Once you have persisted objects you need to query them. For example if you have a web application representing an online store, the user asks to see all products of a particular type, ordered by the price. This requires you to query the datastore for these products. JDO allows support for several query languages using its API. DataNucleus provides querying using
Note that for some datastores additional query languages may be available specific to that datastore - please check the datastores documentation. The query language you choose is your choice, typically dependent on the skillset of the developers of your application.
The principal ways of creating a query are
Please note that with the query API you can also specify execution time information for the query, such as whether it executes in memory, or whether to apply a datastore timeout etc.
An intermediate step once you have your query defined, if you want to check its validity is to compile it. You do this as follows q.compile(); If the query is invalid, then a JDO exception will be thrown.
So we have set up our query. We now execute it Object result = q.execute(); If we have parameters to pass in we can also do any of
Object result = q.execute(paramVal1);
Object result = q.execute(paramVal1, paramVal2);
Object result = q.executeWithArray(new Object[]{paramVal1, paramVal2});
Map paramMap = new HashMap();
paramMap("param1", paramVal1);
paramMap("param2", paramVal2);
Object result = q.executeWithMap(paramMap);
By default, when a query is executed, it will execute in the datastore with what is present in the datastore at that time. If there are outstanding changes waiting to be flushed then these will not feature in the results. To flush these changes before execution, set the following query "extension" before calling execute
q.addExtension("datanucleus.query.flushBeforeExecution","true");
JDO's query API allows implementations to support extensions and provides a simple interface for enabling the use of such extensions on queries. q.addExtension("extension_name", "value");
HashMap exts = new HashMap();
exts.put("extension1", value1);
exts.put("extension2", value2);
q.setExtensions(exts);
With the JDO API you can either define a query at runtime, or define it in the MetaData/annotations for a class and refer to it at runtime using a symbolic name. This second option means that the method of invoking the query at runtime is much simplified. To demonstrate the process, lets say we have a class called Product (something to sell in a store). We define the JDO Meta-Data for the class in the normal way, but we also have some query that we know we will require, so we define the following in the Meta-Data.
<jdo>
<package name="mydomain">
<class name="Product">
...
<query name="SoldOut" language="javax.jdo.query.JDOQL"><![CDATA[
SELECT FROM mydomain.Product WHERE status == "Sold Out"
]]></query>
</class>
</package>
</jdo>So we have a JDOQL query called "SoldOut" defined for the class Product that returns all Products (and subclasses) that have a status of "Sold Out". Out of interest, what we would then do in our application to execute this query woule be Query query = pm.newNamedQuery(mydomain.Product.class,"SoldOut"); Collection results=(Collection)query.execute(); The above example was for the JDOQL object-based query language. We can do a similar thing using SQL, so we define the following in our MetaData for our Product class
<jdo>
<package name="mydomain">
<class name="Product">
...
<query name="PriceBelowValue" language="javax.jdo.query.SQL"><![CDATA[
SELECT NAME FROM PRODUCT WHERE PRICE < ?
]]></query>
</class>
</package>
</jdo>So here we have an SQL query that will return the names of all Products that have a price less than a specified value. This leaves us the flexibility to specify the value at runtime. So here we run our named query, asking for the names of all Products with price below 20 euros. Query query=pm.newNamedQuery(org.datanucleus.example.Product.class,"PriceBelowValue"); Collection results=(Collection)query.execute(20.0); All of the examples above have been specifed within the <class> element of the MetaData. You can, however, specify queries below <jdo> in which case the query is not scoped by a particular candidate class. In this case you must put your queries in any of the following MetaData files
/META-INF/package.jdo
/WEB-INF/package.jdo
/package.jdo
/META-INF/package-{mapping}.orm
/WEB-INF/package-{mapping}.orm
/package-{mapping}.orm
/META-INF/package.jdoquery
/WEB-INF/package.jdoquery
/package.jdoquery
When a Query is executed it executes in the datastore, which returns a set of results. DataNucleus could clearly read all results from this ResultSet in one go and return them all to the user, or could allow control over this fetching process. JDO provides a fetch size on the Fetch Plan to allow this control. You would set this as follows Query q = pm.newQuery(...); q.getFetchPlan().setFetchSize(FetchPlan.FETCH_SIZE_OPTIMAL); fetch size has 3 possible values.
In addition to the number of objects fetched, you can also control which fields are fetched for each object of the candidate type. This is controlled via the FetchPlan . Note that you cannot retrieve collection/map fields in the same query as the owning object - this will always be performed in a separate datastore access. See also Fetch Groups.
DataNucleus also allows an extension to give further control. As mentioned above, when the transaction containing the Query is committed, all remaining results are read so that they can then be accessed later (meaning that the query is still usable). Where you have a large result set and you don't want this behaviour you can turn it off by specifying a Query extension q.addExtension("datanucleus.query.loadResultsAtCommit", "false");so when the transaction is committed, no more results will be available from the query.
In some situations you don't want all FetchPlan fields retrieving, and DataNucleus provides an extension to turn this off, like this q.addExtension("datanucleus.query.useFetchPlan", "false");
When using optimistic transactions all updates to data are held until flush()/commit(). This means that executing a query may not take into account changes made during that transaction in some objects. DataNucleus allows a convenience of calling flush() just before execution of queries so that all updates are taken into account. The property name is datanucleus.query.flushBeforeExecution and defaults to "false". To do this on a per query basis for JDO you would do query.addExtension("datanucleus.query.flushBeforeExecution","true");You can also specify this for all queries using a persistence property datanucleus.query.flushBeforeExecution which would then apply to ALL queries for that PMF.
q.setDatastoreReadTimeout(1000); Sets the timeout for this query (in milliseconds). Will throw a JDOUnsupportedOperationException if the query implementation doesn't support timeouts.
q.setDatastoreWriteTimeout(1000); Sets the timeout for this query (in milliseconds) when it is a delete. Will throw a JDOUnsupportedOperationException if the query implementation doesn't support timeouts. |