Difference between revisions of "Using the Query Tool"
Line 1: | Line 1: | ||
− | |||
− | |||
A common problem with the ofbiz entity engine and delegator is that it could be difficult to construct complex queries. To solve this problem, we created an opentaps query tool, which works with the ofbiz delegator but allows you to write your queries in familiar SQL. The query tool could then return either lists or EntityListIterator of GenericEntity or simply lists of maps. | A common problem with the ofbiz entity engine and delegator is that it could be difficult to construct complex queries. To solve this problem, we created an opentaps query tool, which works with the ofbiz delegator but allows you to write your queries in familiar SQL. The query tool could then return either lists or EntityListIterator of GenericEntity or simply lists of maps. | ||
Line 9: | Line 7: | ||
To use the query tool, create a QueryFactory from the delegator: | To use the query tool, create a QueryFactory from the delegator: | ||
<pre> | <pre> | ||
− | + | import org.opentaps.common.query.*; | |
− | QueryFactory qf = new QueryFactory(delegator | + | QueryFactory qf = new QueryFactory(delegator); |
</pre> | </pre> | ||
− | Then, use your QueryFactory to create either | + | Then, use your QueryFactory to create either a Query. The syntax should be similar to [http://www.hibernate.org/hib_docs/reference/en/html/objectstate.html#objectstate-querying Hibernate querying]: |
<pre> | <pre> | ||
− | + | Query q = qf.createQuery("SELECT * FROM STATUS_ITEM WHERE STATUS_ID LIKE 'INVOICE%'"); | |
− | |||
− | |||
− | |||
</pre> | </pre> | ||
− | + | You can then run your query in the following ways: | |
<pre> | <pre> | ||
− | + | // run the query and get result set | |
− | + | q.executeQuery(); | |
− | + | ResultSet rs = q.getResultSet(); | |
− | + | ||
− | + | // run the query and get it back as a List or the first value as a Map | |
− | + | List list1 = q.list(); | |
+ | Map map1 = q.firstResult(); | ||
+ | |||
+ | // run the query and get an EntityListIterator. Specify the entity name and optionally a list of fields | ||
+ | EntityListIterator eli1 = q.entityListIterator("StatusItem"); | ||
+ | EntityListIterator eli2 = q.entityListIterator("StatusItem", UtilMisc.toMap("statusId", "statusTypeId", "description")); | ||
+ | |||
+ | // run the query and get a List of GenericValues. Specify the entity name and optionally a list of fields | ||
+ | List list3 = q.entitiesList("StatusItem"); | ||
+ | List list4 = q.entitiesList("StatusItem", UtilMisc.toList("statusId", "statusTypeId", "description")); | ||
</pre> | </pre> | ||
− | + | You can also add prepared queries, get the statement, and run it: | |
+ | <pre> | ||
+ | Query q2 = qf.createQuery("SELECT * FROM STATUS_ITEM WHERE STATUS_ID LIKE ? AND STATUS_TYPE_ID LIKE ?"); | ||
+ | PreparedStatement ps = q2.getStatement(); | ||
+ | ps.setString(1, "%APPROVE%"); | ||
+ | ps.setString(2, "INVOICE%"); | ||
+ | List list5 = q2.list(); | ||
+ | </pre> |
Revision as of 17:22, 12 June 2008
A common problem with the ofbiz entity engine and delegator is that it could be difficult to construct complex queries. To solve this problem, we created an opentaps query tool, which works with the ofbiz delegator but allows you to write your queries in familiar SQL. The query tool could then return either lists or EntityListIterator of GenericEntity or simply lists of maps.
Another benefit of the query tool is that it allows you to use JDBC prepared statements, which is more efficient because the query can be reused for different parameters, rather than a different query being passed to your database each time, which is the case with the delegator. (See this article about JDBC performance tuning.)
How It Works
To use the query tool, create a QueryFactory from the delegator:
import org.opentaps.common.query.*; QueryFactory qf = new QueryFactory(delegator);
Then, use your QueryFactory to create either a Query. The syntax should be similar to Hibernate querying:
Query q = qf.createQuery("SELECT * FROM STATUS_ITEM WHERE STATUS_ID LIKE 'INVOICE%'");
You can then run your query in the following ways:
// run the query and get result set q.executeQuery(); ResultSet rs = q.getResultSet(); // run the query and get it back as a List or the first value as a Map List list1 = q.list(); Map map1 = q.firstResult(); // run the query and get an EntityListIterator. Specify the entity name and optionally a list of fields EntityListIterator eli1 = q.entityListIterator("StatusItem"); EntityListIterator eli2 = q.entityListIterator("StatusItem", UtilMisc.toMap("statusId", "statusTypeId", "description")); // run the query and get a List of GenericValues. Specify the entity name and optionally a list of fields List list3 = q.entitiesList("StatusItem"); List list4 = q.entitiesList("StatusItem", UtilMisc.toList("statusId", "statusTypeId", "description"));
You can also add prepared queries, get the statement, and run it:
Query q2 = qf.createQuery("SELECT * FROM STATUS_ITEM WHERE STATUS_ID LIKE ? AND STATUS_TYPE_ID LIKE ?"); PreparedStatement ps = q2.getStatement(); ps.setString(1, "%APPROVE%"); ps.setString(2, "INVOICE%"); List list5 = q2.list();