Package org.apache.openjpa.kernel
Class ExpressionStoreQuery.DataStoreExecutor
java.lang.Object
org.apache.openjpa.kernel.AbstractStoreQuery.AbstractExecutor
org.apache.openjpa.kernel.ExpressionStoreQuery.AbstractExpressionExecutor
org.apache.openjpa.kernel.ExpressionStoreQuery.DataStoreExecutor
- All Implemented Interfaces:
Serializable
,StoreQuery.Executor
- Enclosing class:
- ExpressionStoreQuery
public static class ExpressionStoreQuery.DataStoreExecutor
extends ExpressionStoreQuery.AbstractExpressionExecutor
implements StoreQuery.Executor, Serializable
The DataStoreExecutor executes the query against the
implementation's overridden
executeQuery(org.apache.openjpa.kernel.StoreQuery, java.lang.Object[], org.apache.openjpa.kernel.StoreQuery.Range)
method.- Author:
- Marc Prud'hommeaux
- See Also:
-
Constructor Summary
ConstructorDescriptionDataStoreExecutor
(ExpressionStoreQuery q, ClassMetaData meta, boolean subclasses, ExpressionParser parser, Object parsed) -
Method Summary
Modifier and TypeMethodDescriptionexecuteDelete
(StoreQuery q, Object[] params) Deleted the objects that result from the execution of the query, retuning the number of objects that were deleted.executeQuery
(StoreQuery q, Object[] params, StoreQuery.Range range) Return the result of executing this query with the given parameter values.executeUpdate
(StoreQuery q, Object[] params) Updates the objects that result from the execution of the query, retuning the number of objects that were updated.String[]
getDataStoreActions
(StoreQuery q, Object[] params, StoreQuery.Range range) Return a description of the commands that will be sent to the datastore in order to execute the query.getOrderingValue
(StoreQuery q, Object[] params, Object resultObject, int orderIndex) Extract the value of theorderIndex
th ordering expression inQuery#getOrderingClauses
from the given result object.Class[]
Return the expected types of the projections used by this query, or an empty array if not a projection.Return the parsed query expressions for our candidate types.Methods inherited from class org.apache.openjpa.kernel.ExpressionStoreQuery.AbstractExpressionExecutor
assertNotContainer, getAccessPathMetaDatas, getAlias, getAscending, getOperation, getOrderedParameterTypes, getProjectionAliases, getRange, getResultClass, getResultShape, getUpdates, hasGrouping, isAggregate, isDistinct, isPacking, toParameterArray, validate
Methods inherited from class org.apache.openjpa.kernel.AbstractStoreQuery.AbstractExecutor
getParameterTypes
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.openjpa.kernel.StoreQuery.Executor
getAccessPathMetaDatas, getAlias, getAscending, getOperation, getOrderedParameterTypes, getParameterTypes, getProjectionAliases, getRange, getResultClass, getResultShape, getUpdates, hasGrouping, isAggregate, isDistinct, isPacking, toParameterArray, validate
-
Constructor Details
-
DataStoreExecutor
public DataStoreExecutor(ExpressionStoreQuery q, ClassMetaData meta, boolean subclasses, ExpressionParser parser, Object parsed)
-
-
Method Details
-
getQueryExpressions
Description copied from interface:StoreQuery.Executor
Return the parsed query expressions for our candidate types. The expressions are available only after query has been parsed.- Specified by:
getQueryExpressions
in interfaceStoreQuery.Executor
- Overrides:
getQueryExpressions
in classAbstractStoreQuery.AbstractExecutor
-
executeQuery
Description copied from interface:StoreQuery.Executor
Return the result of executing this query with the given parameter values. If this query is a projection and this executor does not pack results itself, each element of the returned result object provider should be an object array containing the projection values.- Specified by:
executeQuery
in interfaceStoreQuery.Executor
- See Also:
-
executeDelete
Description copied from interface:StoreQuery.Executor
Deleted the objects that result from the execution of the query, retuning the number of objects that were deleted.- Specified by:
executeDelete
in interfaceStoreQuery.Executor
- Overrides:
executeDelete
in classAbstractStoreQuery.AbstractExecutor
-
executeUpdate
Description copied from interface:StoreQuery.Executor
Updates the objects that result from the execution of the query, retuning the number of objects that were updated.- Specified by:
executeUpdate
in interfaceStoreQuery.Executor
- Overrides:
executeUpdate
in classAbstractStoreQuery.AbstractExecutor
-
getDataStoreActions
Description copied from interface:StoreQuery.Executor
Return a description of the commands that will be sent to the datastore in order to execute the query.- Specified by:
getDataStoreActions
in interfaceStoreQuery.Executor
- Overrides:
getDataStoreActions
in classAbstractStoreQuery.AbstractExecutor
-
getOrderingValue
Description copied from interface:StoreQuery.Executor
Extract the value of theorderIndex
th ordering expression inQuery#getOrderingClauses
from the given result object. The result object will be an object from the result object provider returned fromStoreQuery.Executor.executeQuery(org.apache.openjpa.kernel.StoreQuery, java.lang.Object[], org.apache.openjpa.kernel.StoreQuery.Range)
. This method is used when several result lists have to be merged in memory. If this exeuctor's parent query supports executors on abstract or interface classes, this method will not be used.- Specified by:
getOrderingValue
in interfaceStoreQuery.Executor
- Overrides:
getOrderingValue
in classAbstractStoreQuery.AbstractExecutor
- See Also:
-
getProjectionTypes
Description copied from interface:StoreQuery.Executor
Return the expected types of the projections used by this query, or an empty array if not a projection.- Specified by:
getProjectionTypes
in interfaceStoreQuery.Executor
- Overrides:
getProjectionTypes
in classExpressionStoreQuery.AbstractExpressionExecutor
-