- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
DoesExistQuery
,JPAQuery
,ModifyQuery
,ReadQuery
Purpose: Abstract class for all database query objects. DatabaseQuery is a visible class to the EclipseLink user. Users create an appropriate query by creating an instance of a concrete subclasses of DatabaseQuery.
Responsibilities:
- Provide a common protocol for query objects.
- Defines a generic execution interface.
- Provides query property values
- Holds arguments to the query
- Since:
- TOPLink/Java 1.0
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Used for parameter retreival in JPQL -
Field Summary
Modifier and TypeFieldDescriptionprotected Collection
<Accessor> Connection to use for database access, required for server session connection pooling.protected Boolean
Property used to override a persistence unit level that disallows native SQL queries.protected List
<DatabaseField> PERF: Argument fields are cached in prepare to avoid rebuilding on each execution.protected List
<DatabaseQuery.ParameterType> Arguments can be given and specified to predefined queries to allow reuse.Used to build a list of argumentTypes by name pre-initializationNeeded to differentiate queries with the same name.Arguments values can be given and specified to predefined queries to allow reuse.static final String
INTERNAL: Property used for batch fetching in non object queries.static final int
static final int
static final int
static final int
protected int
Policy that determines how the query will cascade to its object's parts.static final int
protected ClassDescriptor
The descriptor cached on the prepare for object level queries.protected List
<ClassDescriptor> The list of descriptors this query deals with.protected boolean
Can be set to true in the case there is a redirector or a default redirector but the user does not want the query redirected.protected AbstractSession
Only used after the query is cloned for execution to store the execution session under which the query was executed.protected Boolean
protected String
Used for adding hints to the query string in oracleprotected Boolean
PERF: Store if this query will use the descriptor custom query.protected boolean
PERF: Determines if the query has already been cloned for execution, to avoid duplicate cloning.protected boolean
Allow connection unwrapping to be configured.protected boolean
Queries prepare common stated in themselves.protected boolean
Internal flag used to bypass user define queries when executing one for custom sql/query support.protected boolean
Internal flag used to bypass user define queries when executing one for custom sql/query support.protected String
Return the name to use for the query in performance monitoring.protected String
Queries can be given a name and registered with a descriptor to allow common queries to be reused.static final int
protected List
<DatabaseField> List of arguments to check for null.protected String
Allow the reserved pound char used to delimit bind parameters to be overriddenprotected PartitioningPolicy
Allow queries to be targeted at specific connection pools.Internally used by the mappings as a temporary store.protected DatabaseQueryMechanism
The query mechanism determines the mechanism on how the database will be accessed.protected int
queryTimeout has three possible settings: DefaultTimeout, NoTimeout, and 1..N This applies to both DatabaseQuery.queryTimeout and DescriptorQueryManager.queryTimeout DatabaseQuery.queryTimeout: - DefaultTimeout: get queryTimeout from DescriptorQueryManager - NoTimeout, 1..N: overrides queryTimeout in DescriptorQueryManager DescriptorQueryManager.queryTimeout: - DefaultTimeout: get queryTimeout from parent DescriptorQueryManager.protected TimeUnit
protected QueryRedirector
A redirector allows for a queries execution to be the execution of a piece of code.protected AbstractSession
Only used after the query is cloned for execution to store the session under which the query was executed.protected String
Used to override the default session in the session broker.protected Boolean
Bind all arguments to the SQL statement.protected Boolean
Cache the prepared statement, this requires full parameter binding as well.protected boolean
Used to indicate whether or not the call needs to be cloned.protected boolean
Flag used for a query to bypass the identitymap and unit of work.protected boolean
Allow for the prepare of queries to be turned off, this allow for dynamic non-pre SQL generated queries.protected boolean
JPA flags to control the shared cacheprotected boolean
protected boolean
protected boolean
Use the WrapperPolicy for the objects returned by the queryprotected boolean
Allow additional validation to be performed before using the update call cacheprotected DatabaseMapping
Table per class requires multiple query executions.protected AbstractRecord
Mappings and the descriptor use parameterized mechanisms that will be translated with the data from the row. -
Constructor Summary
ModifierConstructorDescriptionprotected
PUBLIC: Initialize the state of the query -
Method Summary
Modifier and TypeMethodDescriptionvoid
addArgument
(String argumentName) PUBLIC: Add the argument named argumentName.void
addArgument
(String argumentName, Class<?> type) PUBLIC: Add the argument named argumentName and its class type.void
addArgument
(String argumentName, Class<?> type, boolean nullable) PUBLIC: Add the argument named argumentName and its class type.void
addArgument
(String argumentName, Class<?> type, DatabaseQuery.ParameterType parameterType) INTERNAL: Add the argument named argumentName.void
addArgument
(String argumentName, Class<?> type, DatabaseQuery.ParameterType argumentParameterType, boolean nullable) INTERNAL: Add the argument named argumentName.void
addArgument
(String argumentName, String typeAsString) PUBLIC: Add the argument named argumentName and its class type.void
addArgumentByTypeName
(String argumentName, String typeAsString) INTERNAL: Add an argument to the query, but do not resolve the class yet.void
addArgumentValue
(Object argumentValue) PUBLIC: Add the argumentValue.void
addArgumentValues
(List theArgumentValues) PUBLIC: Add the argumentValues to the query.void
PUBLIC: Used to define a store procedure or SQL query.void
addStatement
(SQLStatement statement) PUBLIC: Used to define a statement level query.void
PUBLIC: Bind all arguments to any SQL statement.INTERNAL: Build the list of arguments fields from the argument names and types.protected void
buildSelectionCriteria
(AbstractSession session) INTERNAL: In the case of EJBQL, an expression needs to be generated.void
PUBLIC: Cache the prepared statements, this requires full parameter binding as well.void
PUBLIC: Cascade the query and its properties on the queries object(s) and all objects related to the queries object(s).void
PUBLIC: Cascade the query and its properties on the queries object(s) and all related objects where the mapping has been set to cascade the merge.void
INTERNAL: Used by unit of work, only cascades constraint dependencies.void
PUBLIC: Cascade the query and its properties on the queries object(s) and all privately owned objects related to the queries object(s).void
checkDescriptor
(AbstractSession session) INTERNAL: Ensure that the descriptor has been set.checkEarlyReturn
(AbstractSession session, AbstractRecord translationRow) INTERNAL: Check to see if this query already knows the return value without performing any further work.protected DatabaseQuery
checkForCustomQuery
(AbstractSession session, AbstractRecord translationRow) INTERNAL: Check to see if a custom query should be used for this query.void
checkPrepare
(AbstractSession session, AbstractRecord translationRow) INTERNAL: Check to see if this query needs to be prepare and prepare it.void
checkPrepare
(AbstractSession session, AbstractRecord translationRow, boolean force) INTERNAL: Check to see if this query needs to be prepare and prepare it.clone()
INTERNAL: Clone the queryprotected void
clonedQueryExecutionComplete
(DatabaseQuery query, AbstractSession session) INTERNAL Used to give the subclasses opportunity to copy aspects of the cloned query to the original query.void
convertClassNamesToClasses
(ClassLoader classLoader) INTERNAL: Convert all the class-name-based settings in this query to actual class-based settings This method is implemented by subclasses as necessary.void
copyFromQuery
(DatabaseQuery query) INTERNAL: Copy all setting from the query.void
PUBLIC: Do not Bind all arguments to any SQL statement.void
PUBLIC: Don't cache the prepared statements, this requires full parameter binding as well.void
PUBLIC: Do not cascade the query and its properties on the queries object(s) relationships.void
PUBLIC: Set for the identity map (cache) to be ignored completely.execute
(AbstractSession session, AbstractRecord translationRow) INTERNAL: Execute the query.abstract Object
INTERNAL: Execute the queryexecuteInUnitOfWork
(UnitOfWorkImpl unitOfWork, AbstractRecord translationRow) INTERNAL: Override query execution where Session is a UnitOfWork.extractRemoteResult
(Transporter transporter) INTERNAL: Extract the correct query result from the transporter.INTERNAL: Return the accessor.INTERNAL: Return the accessors.INTERNAL: Used to calculate parameter types in JPQLINTERNAL: Return the arguments for use with the pre-defined query optionINTERNAL: Return the argumentTypeNames for use with the pre-defined query option These are used pre-initialization to construct the argumentTypes list.INTERNAL: Return the argumentTypes for use with the pre-defined query optionINTERNAL: Return the argumentValues for use with argumented queries.INTERNAL: Return temporary map of batched objects.getCall()
OBSOLETE: Return the call for this query.int
INTERNAL: Return the cascade policy.ADVANCED: Return the call for this query.ADVANCED: Return the calls for this query.protected QueryRedirector
INTERNAL: Returns the specific default redirector for this query type.INTERNAL: Return the descriptor assigned with the reference classINTERNAL: This is here only for JPA queries and currently only populated for JPA queries.getDomainClassNounName
(String sessionName) INTERNAL: TopLink_sessionName_domainClass.boolean
This method is used in combination with redirected queries.PUBLIC: Return the EJBQL string of the query.INTERNAL: Return the execution session.PUBLIC: If executed against a RepeatableWriteUnitOfWork if this attribute is true EclipseLink will write changes to the database before executing the query.PUBLIC: Return the current database hint string of the query.PUBLIC: Return the JPQL string of the query.INTERNAL: Return the name to use for the query in performance monitoring.getName()
PUBLIC: Return the name of the queryINTERNAL: Return the list of arguments to check for null.INTERNAL: Return the String used to delimit an SQL parameter.char
INTERNAL: Return the char used to delimit an SQL parameter.PUBLIC: Return the query's partitioning policy.INTERNAL: Property support for use by mappings.getProperty
(Object property) INTERNAL: Property support used by mappings to store temporary stuff in the query.INTERNAL: Return the mechanism assigned to the querygetQueryNounName
(String sessionName) INTERNAL: TopLink_sessionName_domainClass_queryClass_queryName (if exist).int
PUBLIC: Return the number of seconds the driver will wait for a Statement to execute to the given number of seconds.PUBLIC: Return the unit of time the driver will wait for a Statement to execute.PUBLIC: Return the query redirector.PUBLIC: Return the query redirector.Class
<?> PUBLIC: Return the domain class associated with this query.INTERNAL: return the name of the reference class.PUBLIC: Return the selection criteria of the query.getSensorName
(String operationName, String sessionName) INTERNAL: TopLink_sessionName_domainClass_queryClass_queryName (if exist)_operationName (if exist).INTERNAL: Return the current session.PUBLIC: Return the name of the session that the query should be executed under.INTERNAL: Returns the internal tri-state value of shouldBindParameters used far cascading these settingsINTERNAL:PUBLIC: Return the SQL statement of the query.ADVANCED: Return the SQL string of the query.ADVANCED: Return the SQL strings of the query.getTranslatedSQLString
(Session session, DataRecord translationRow) ADVANCED: This can be used to access a queries translated SQL if they have been prepared, (i.e.getTranslatedSQLStrings
(Session session, DataRecord translationRow) ADVANCED: This can be used to access a queries translated SQL if they have been prepared, (i.e.INTERNAL: Return the row for translationboolean
INTERNAL: returns true if the accessor has already been set.boolean
INTERNAL: Return if any arguments exist in the query.boolean
INTERNAL: Return if the query has any nullable arguments.boolean
INTERNAL: Return if any properties exist in the query.boolean
INTERNAL: Check if the mechanism has been set yet, used for lazy init.boolean
PUBLIC: Return if a name of the session that the query should be executed under has been specified.void
PUBLIC: Session's shouldBindAllParameters() defines whether to bind or not (default setting)void
PUBLIC: Session's shouldCacheAllStatements() defines whether to cache or not (default setting)boolean
PUBLIC: Return true if this query uses SQL, a stored procedure, or SDK call.boolean
INTERNAL: Returns true if this query has been created as the result of cascading a delete of an aggregate collection in a UnitOfWork CR 2811INTERNAL: PERF: Return if this query will use the descriptor custom query instead of executing itself.protected boolean
INTERNAL: If the query mechanism is a call query mechanism and there are no arguments on the query then it must be a foreign reference custom selection query.boolean
PUBLIC: Return if this is a data modify query.boolean
PUBLIC: Return if this is a data read query.boolean
INTERNAL: Return true if the query uses default properties.boolean
PUBLIC: Return if this is a delete all query.boolean
PUBLIC: Return if this is a delete object query.boolean
PUBLIC: Return if this is a direct read query.boolean
INTERNAL: PERF: Return if the query is an execution clone.boolean
PUBLIC: Return true if this query uses an expression query mechanismboolean
PUBLIC: Return true if this is an insert object query.boolean
PUBLIC: Return true if this query uses an JPQL query mechanism .boolean
PUBLIC: Return true if this is a modify all query.boolean
PUBLIC: Return true if this is a modify query.boolean
ADVANCED: Return if the descriptor requires usage of a native (unwrapped) JDBC connection.boolean
PUBLIC: Return if this is an object building query.boolean
PUBLIC: Return true if this is an object level modify query.boolean
PUBLIC: Return true if this is an object level read query.boolean
INTERNAL: Queries are prepared when they are executed and then do not need to be prepared on subsequent executions.boolean
PUBLIC: Return true if this is a read all query.boolean
PUBLIC: Return true if this is a read object query.boolean
PUBLIC: Return true if this is a read query.boolean
PUBLIC: Return true if this is a report query.boolean
PUBLIC: Return true if this is a result set mapping query.boolean
PUBLIC: Return true if this query uses an SQL query mechanism .boolean
PUBLIC: Return true if this is an update all query.boolean
PUBLIC: Return true if this is an update object query.boolean
INTERNAL: Return true if the query is a custom user defined query.boolean
INTERNAL: Return true if the query is a custom user defined SQL call query.boolean
PUBLIC: Return if this is a value read query.boolean
PUBLIC: Return true if this is a write object query.void
PUBLIC: Set for the identity map (cache) to be maintained.protected void
prepare()
INTERNAL: This is different from 'prepareForExecution' in that this is called on the original query, and the other is called on the copy of the query.void
prepareCall
(Session session, DataRecord translationRow) ADVANCED: Pre-generate the call/SQL for the query.protected void
prepareCustomQuery
(DatabaseQuery customQuery) INTERNAL: Set the properties needed to be cascaded into the custom query.void
INTERNAL: Prepare the receiver for execution in a session.protected void
void
prepareFromQuery
(DatabaseQuery query) INTERNAL: Prepare the query from the prepared query.void
prepareInternal
(AbstractSession session) INTERNAL: Call the prepare on the query.redirectQuery
(QueryRedirector redirector, DatabaseQuery queryToRedirect, AbstractSession session, AbstractRecord translationRow) INTERNAL: Use a EclipseLink redirector to redirect this query to a method.protected Object
remoteExecute
(AbstractSession session) INTERNAL:void
removeProperty
(Object property) INTERNAL: Property support used by mappings.replaceValueHoldersIn
(Object object, RemoteSessionController controller) INTERNAL: replace the value holders in the specified result object(s)void
INTERNAL: Return the name to use for the query in performance monitoring.void
ADVANCED: JPA flag used to control the behavior of the shared cache.rowFromArguments
(List argumentValues, AbstractSession session) INTERNAL: Translate argumentValues into a database row.void
setAccessor
(Accessor accessor) INTERNAL: Set the accessor, the query must always use the same accessor for database access.void
setAccessors
(Collection<Accessor> accessors) INTERNAL: Set the list of connection accessors to execute the query on.void
setAllowNativeSQLQuery
(Boolean allowNativeSQLQuery) INTERNAL: Set to true if this individual query should be marked to bypass a persistence unit level disallow SQL queries flag.void
setArguments
(List<String> arguments) INTERNAL: Set the arguments for use with the pre-defined query option.void
setArgumentTypeNames
(List<String> argumentTypeNames) INTERNAL: Set the argumentTypes for use with the pre-defined query optionvoid
setArgumentTypes
(List<Class<?>> argumentTypes) INTERNAL: Set the argumentTypes for use with the pre-defined query optionvoid
setArgumentValues
(List<Object> theArgumentValues) INTERNAL: Set the argumentValues for use with argumented queries.void
setBatchObjects
(Map<Object, Object> batchObjects) INTERNAL: Set temporary map of batched objects.void
PUBLIC: Used to define a store procedure or SQL query.void
setCascadePolicy
(int policyConstant) INTERNAL: Set the cascade policy.void
setDatasourceCall
(Call call) PUBLIC: Used to define a store procedure or SQL query.void
setDescriptor
(ClassDescriptor descriptor) INTERNAL: Set the descriptor for the query.void
setDoNotRedirect
(boolean doNotRedirect) This method is used in combination with redirected queries.void
setEJBQLString
(String ejbqlString) PUBLIC: Set the EJBQL string of the query.protected void
setExecutionSession
(AbstractSession executionSession) INTERNAL: Set the execution session.void
setFlushOnExecute
(Boolean flushMode) PUBLIC: If executed against a RepeatableWriteUnitOfWork if this attribute is true EclipseLink will write changes to the database before executing the query.void
setHintString
(String newHintString) Used to set a database hint string on the query.protected void
setIsCustomQueryUsed
(boolean isCustomQueryUsed) INTERNAL: PERF: Set if this query will use the descriptor custom query instead of executing itself.void
setIsExecutionClone
(boolean isExecutionClone) INTERNAL: PERF: Set if the query is an execution clone.void
setIsNativeConnectionRequired
(boolean isNativeConnectionRequired) ADVANCED: Set if the descriptor requires usage of a native (unwrapped) JDBC connection.void
setIsPrepared
(boolean isPrepared) INTERNAL: If changes are made to the query that affect the derived SQL or Call parameters the query needs to be prepared again.void
setIsUserDefined
(boolean isUserDefined) INTERNAL: Set if the query is a custom user defined query.void
setIsUserDefinedSQLCall
(boolean isUserDefinedSQLCall) INTERNAL: Set if the query is a custom user defined sql call query.void
setJPQLString
(String jpqlString) PUBLIC: Set the JPQL string of the query.void
PUBLIC: Set the query's name.void
setNullableArguments
(List<DatabaseField> nullableArguments) INTERNAL: Set the list of arguments to check for null.void
setParameterDelimiter
(String aParameterDelimiter) INTERNAL: Set the String char used to delimit an SQL parameter.void
setPartitioningPolicy
(PartitioningPolicy partitioningPolicy) PUBLIC: Set the query's partitioning policy.void
setProperties
(Map<Object, Object> properties) INTERNAL: Property support used by mappings.void
setProperty
(Object property, Object value) INTERNAL: Property support used by mappings to store temporary stuff.protected void
setQueryMechanism
(DatabaseQueryMechanism queryMechanism) Set the query mechanism for the query.void
setQueryTimeout
(int queryTimeout) PUBLIC: Set the number of seconds the driver will wait for a Statement to execute to the given number of seconds.void
setQueryTimeoutUnit
(TimeUnit queryTimeoutUnit) void
setRedirector
(QueryRedirector redirector) PUBLIC: Set the query redirector.void
setSelectionCriteria
(Expression expression) PUBLIC: To any user of this object.void
setSession
(AbstractSession session) INTERNAL: Set the session for the queryvoid
setSessionName
(String sessionName) PUBLIC: Set the name of the session that the query should be executed under.void
setShouldBindAllParameters
(boolean shouldBindAllParameters) PUBLIC: Bind all arguments to any SQL statement.void
setShouldBindAllParameters
(Boolean bindAllParams) INTERNAL: Sets the internal tri-state value of shouldBindAllParams Used to cascade this value to other queriesvoid
setShouldCacheStatement
(boolean shouldCacheStatement) PUBLIC: Cache the prepared statements, this requires full parameter binding as well.void
setShouldMaintainCache
(boolean shouldMaintainCache) PUBLIC: Set if the identity map (cache) should be used or not.void
setShouldPrepare
(boolean shouldPrepare) PUBLIC: Set if the query should be prepared.void
setShouldRetrieveBypassCache
(boolean shouldRetrieveBypassCache) ADVANCED: JPA flag used to control the behavior of the shared cache.void
setShouldReturnGeneratedKeys
(boolean shouldReturnGeneratedKeys) ADVANCED: JPA flag used to control the behavior of IDENTITY generation.void
setShouldStoreBypassCache
(boolean shouldStoreBypassCache) ADVANCED: JPA flag used to control the behavior of the shared cache.void
setShouldUseWrapperPolicy
(boolean shouldUseWrapperPolicy) ADVANCED: The wrapper policy can be enable on a query.void
setShouldValidateUpdateCallCacheUse
(boolean shouldCheckUpdateCallCacheUse) INTERNAL: Set if additional validation should be performed before the query uses the update call cache.void
setSourceMapping
(DatabaseMapping sourceMapping) INTERNAL:void
setSQLStatement
(SQLStatement sqlStatement) PUBLIC: To any user of this object.void
setSQLString
(String sqlString) PUBLIC: To any user of this object.void
setTranslationRow
(AbstractRecord translationRow) INTERNAL: Set the row for translationboolean
shouldAllowNativeSQLQuery
(boolean projectAllowsNativeQueries) INTERNAL: Return true if this individual query should allow native a SQL call to be issued.boolean
PUBLIC: Bind all arguments to any SQL statement.boolean
PUBLIC: Cache the prepared statements, this requires full parameter binding as well.boolean
PUBLIC: Flag used to determine if all parts should be cascadedboolean
PUBLIC: Mappings should be checked to determined if the current operation should be cascaded to the objects referenced.boolean
INTERNAL: Flag used for unit of works cascade policy.boolean
PUBLIC: Flag used to determine if any parts should be cascadedboolean
PUBLIC: Flag used to determine if any private parts should be cascadedboolean
INTERNAL: Flag used to determine if the call needs to be cloned.boolean
PUBLIC: Local shouldBindAllParameters() should be ignored, Session's shouldBindAllParameters() should be used.boolean
PUBLIC: Local shouldCacheStatement() should be ignored, Session's shouldCacheAllStatements() should be used.boolean
PUBLIC: Return if the identity map (cache) should be used or not.boolean
PUBLIC: Return if the query should be prepared.boolean
shouldPrepare
(AbstractRecord translationRow, AbstractSession session) INTERNAL: Check if the query should be prepared, or dynamic, depending on the arguments.boolean
ADVANCED: JPA flag used to control the behavior of the shared cache.boolean
ADVANCED: JPA flag used to control the behavior of IDENTITY generation.boolean
ADVANCED: JPA flag used to control the behavior of the shared cache.boolean
ADVANCED: The wrapper policy can be enabled on a query.boolean
ADVANCED: Return true if additional validation should be performed before the query uses the update call cache, false otherwise.void
ADVANCED: JPA flag used to control the behavior of the shared cache.toString()
-
Field Details
-
BATCH_FETCH_PROPERTY
INTERNAL: Property used for batch fetching in non object queries.- See Also:
-
name
Queries can be given a name and registered with a descriptor to allow common queries to be reused. -
arguments
Arguments can be given and specified to predefined queries to allow reuse. -
argumentFields
PERF: Argument fields are cached in prepare to avoid rebuilding on each execution. -
argumentValues
Arguments values can be given and specified to predefined queries to allow reuse. -
argumentTypes
Needed to differentiate queries with the same name. -
argumentTypeNames
Used to build a list of argumentTypes by name pre-initialization -
argumentParameterTypes
-
descriptor
The descriptor cached on the prepare for object level queries. -
descriptors
The list of descriptors this query deals with. Set via JPA processing for table per tenant queries -
queryMechanism
The query mechanism determines the mechanism on how the database will be accessed. -
redirector
A redirector allows for a queries execution to be the execution of a piece of code. -
doNotRedirect
protected boolean doNotRedirectCan be set to true in the case there is a redirector or a default redirector but the user does not want the query redirected. -
shouldMaintainCache
protected boolean shouldMaintainCacheFlag used for a query to bypass the identitymap and unit of work. -
shouldRetrieveBypassCache
protected boolean shouldRetrieveBypassCacheJPA flags to control the shared cache -
shouldStoreBypassCache
protected boolean shouldStoreBypassCache -
allowNativeSQLQuery
Property used to override a persistence unit level that disallows native SQL queries.- See Also:
-
properties
Internally used by the mappings as a temporary store. -
session
Only used after the query is cloned for execution to store the session under which the query was executed. -
executionSession
Only used after the query is cloned for execution to store the execution session under which the query was executed. -
accessors
Connection to use for database access, required for server session connection pooling. There can be multiple connections with partitioning and replication. -
translationRow
Mappings and the descriptor use parameterized mechanisms that will be translated with the data from the row. -
isUserDefined
protected boolean isUserDefinedInternal flag used to bypass user define queries when executing one for custom sql/query support. -
isUserDefinedSQLCall
protected boolean isUserDefinedSQLCallInternal flag used to bypass user define queries when executing one for custom sql/query support. -
cascadePolicy
protected int cascadePolicyPolicy that determines how the query will cascade to its object's parts. -
sessionName
Used to override the default session in the session broker. -
isPrepared
protected boolean isPreparedQueries prepare common stated in themselves. -
shouldCloneCall
protected boolean shouldCloneCallUsed to indicate whether or not the call needs to be cloned. -
shouldPrepare
protected boolean shouldPrepareAllow for the prepare of queries to be turned off, this allow for dynamic non-pre SQL generated queries. -
nullableArguments
List of arguments to check for null. If any are null, the query needs to be re-prepared. -
shouldBindAllParameters
Bind all arguments to the SQL statement. -
shouldCacheStatement
Cache the prepared statement, this requires full parameter binding as well. -
shouldUseWrapperPolicy
protected boolean shouldUseWrapperPolicyUse the WrapperPolicy for the objects returned by the query -
sourceMapping
Table per class requires multiple query executions. Internally we prepare those queries and cache them against the source mapping's selection query. When queries are executed they are cloned so we need a mechanism to keep a reference back to the actual selection query so that we can successfully look up and chain query executions within a table per class inheritance hierarchy. -
queryTimeout
protected int queryTimeoutqueryTimeout has three possible settings: DefaultTimeout, NoTimeout, and 1..N This applies to both DatabaseQuery.queryTimeout and DescriptorQueryManager.queryTimeout DatabaseQuery.queryTimeout: - DefaultTimeout: get queryTimeout from DescriptorQueryManager - NoTimeout, 1..N: overrides queryTimeout in DescriptorQueryManager DescriptorQueryManager.queryTimeout: - DefaultTimeout: get queryTimeout from parent DescriptorQueryManager. If there is no parent, default to NoTimeout - NoTimeout, 1..N: overrides parent queryTimeout -
queryTimeoutUnit
-
shouldReturnGeneratedKeys
protected boolean shouldReturnGeneratedKeys -
NoCascading
public static final int NoCascading- See Also:
-
CascadePrivateParts
public static final int CascadePrivateParts- See Also:
-
CascadeAllParts
public static final int CascadeAllParts- See Also:
-
CascadeDependentParts
public static final int CascadeDependentParts- See Also:
-
CascadeAggregateDelete
public static final int CascadeAggregateDelete- See Also:
-
CascadeByMapping
public static final int CascadeByMapping- See Also:
-
hintString
Used for adding hints to the query string in oracle -
flushOnExecute
-
isExecutionClone
protected boolean isExecutionClonePERF: Determines if the query has already been cloned for execution, to avoid duplicate cloning. -
isCustomQueryUsed
PERF: Store if this query will use the descriptor custom query. -
isNativeConnectionRequired
protected boolean isNativeConnectionRequiredAllow connection unwrapping to be configured. -
monitorName
Return the name to use for the query in performance monitoring. -
shouldValidateUpdateCallCacheUse
protected boolean shouldValidateUpdateCallCacheUseAllow additional validation to be performed before using the update call cache -
partitioningPolicy
Allow queries to be targeted at specific connection pools. -
parameterDelimiter
Allow the reserved pound char used to delimit bind parameters to be overridden
-
-
Constructor Details
-
DatabaseQuery
protected DatabaseQuery()PUBLIC: Initialize the state of the query
-
-
Method Details
-
getPartitioningPolicy
PUBLIC: Return the query's partitioning policy. -
setPartitioningPolicy
PUBLIC: Set the query's partitioning policy. A PartitioningPolicy is used to partition, load-balance or replicate data across multiple difference databases or across a database cluster such as Oracle RAC. Partitioning can provide improved scalability by allowing multiple database machines to service requests. Setting a policy on a query will override the descriptor and session defaults. -
getMonitorName
INTERNAL: Return the name to use for the query in performance monitoring. -
resetMonitorName
public void resetMonitorName()INTERNAL: Return the name to use for the query in performance monitoring. -
addArgument
PUBLIC: Add the argument named argumentName. This will cause the translation of references of argumentName in the receiver's expression, with the value of the argument as supplied to the query in order from executeQuery() -
addArgument
PUBLIC: Add the argument named argumentName and its class type. This will cause the translation of references of argumentName in the receiver's expression, with the value of the argument as supplied to the query in order from executeQuery(). Specifying the class type is important if identically named queries are used but with different argument lists. -
addArgument
public void addArgument(String argumentName, Class<?> type, DatabaseQuery.ParameterType parameterType) INTERNAL: Add the argument named argumentName. This method was added to maintain information about whether parameters are positional or named for JPQL query introspeciton API -
addArgument
PUBLIC: Add the argument named argumentName and its class type. This will cause the translation of references of argumentName in the receiver's expression, with the value of the argument as supplied to the query in order from executeQuery(). Specifying the class type is important if identically named queries are used but with different argument lists. If the argument can be null, and null must be treated differently in the generated SQL, then nullable should be set to true. -
addArgument
public void addArgument(String argumentName, Class<?> type, DatabaseQuery.ParameterType argumentParameterType, boolean nullable) INTERNAL: Add the argument named argumentName. This method was added to maintain information about whether parameters are positional or named for JPQL query introspeciton API -
addArgument
PUBLIC: Add the argument named argumentName and its class type. This will cause the translation of references of argumentName in the receiver's expression, with the value of the argument as supplied to the query in order from executeQuery(). Specifying the class type is important if identically named queries are used but with different argument lists. -
addArgumentByTypeName
INTERNAL: Add an argument to the query, but do not resolve the class yet. This is useful for building a query without putting the domain classes on the classpath for the Mapping Workbench. -
addArgumentValue
PUBLIC: Add the argumentValue. Argument values must be added in the same order the arguments are defined. -
addArgumentValues
PUBLIC: Add the argumentValues to the query. Argument values must be added in the same order the arguments are defined. -
addCall
PUBLIC: Used to define a store procedure or SQL query. This may be used for multiple SQL executions to be mapped to a single query. This cannot be used for cursored selects, delete alls or does exists. -
addStatement
PUBLIC: Used to define a statement level query. This may be used for multiple SQL executions to be mapped to a single query. This cannot be used for cursored selects, delete all(s) or does exists. -
bindAllParameters
public void bindAllParameters()PUBLIC: Bind all arguments to any SQL statement. -
buildSelectionCriteria
INTERNAL: In the case of EJBQL, an expression needs to be generated. Build the required expression. -
cacheStatement
public void cacheStatement()PUBLIC: Cache the prepared statements, this requires full parameter binding as well. -
cascadeAllParts
public void cascadeAllParts()PUBLIC: Cascade the query and its properties on the queries object(s) and all objects related to the queries object(s). This includes private and independent relationships, but not read-only relationships. This will still stop on uninstantiated indirection objects except for deletion. Great caution should be used in using the property as the query may effect a large number of objects. This policy is used by the unit of work to ensure persistence by reachability. -
cascadeByMapping
public void cascadeByMapping()PUBLIC: Cascade the query and its properties on the queries object(s) and all related objects where the mapping has been set to cascade the merge. -
cascadeOnlyDependentParts
public void cascadeOnlyDependentParts()INTERNAL: Used by unit of work, only cascades constraint dependencies. -
cascadePrivateParts
public void cascadePrivateParts()PUBLIC: Cascade the query and its properties on the queries object(s) and all privately owned objects related to the queries object(s). This is the default for write and delete queries. This policy should normally be used for refreshing, otherwise you could refresh half of any object. -
checkDescriptor
INTERNAL: Ensure that the descriptor has been set.- Throws:
QueryException
-
checkEarlyReturn
INTERNAL: Check to see if this query already knows the return value without performing any further work. -
checkForCustomQuery
INTERNAL: Check to see if a custom query should be used for this query. This is done before the query is copied and prepared/executed. null means there is none. -
checkPrepare
INTERNAL: Check to see if this query needs to be prepare and prepare it. The prepare is done on the original query to ensure that the work is not repeated. -
prepareInternal
INTERNAL: Call the prepare on the query. -
checkPrepare
INTERNAL: Check to see if this query needs to be prepare and prepare it. The prepare is done on the original query to ensure that the work is not repeated. -
clone
INTERNAL: Clone the query -
clonedQueryExecutionComplete
INTERNAL Used to give the subclasses opportunity to copy aspects of the cloned query to the original query. -
convertClassNamesToClasses
INTERNAL: Convert all the class-name-based settings in this query to actual class-based settings This method is implemented by subclasses as necessary. -
dontBindAllParameters
public void dontBindAllParameters()PUBLIC: Do not Bind all arguments to any SQL statement. -
dontCacheStatement
public void dontCacheStatement()PUBLIC: Don't cache the prepared statements, this requires full parameter binding as well. -
dontCascadeParts
public void dontCascadeParts()PUBLIC: Do not cascade the query and its properties on the queries object(s) relationships. This does not effect the queries private parts but only the object(s) direct row-level attributes. This is the default for read queries and can be used in writing if it is known that only row-level attributes changed, or to resolve circular foreign key dependencies. -
dontMaintainCache
public void dontMaintainCache()PUBLIC: Set for the identity map (cache) to be ignored completely. The cache check will be skipped and the result will not be put into the identity map. This can be used to retrieve the exact state of an object on the database. By default the identity map is always maintained. -
executeDatabaseQuery
INTERNAL: Execute the query- Returns:
- - the result of executing the query.
- Throws:
DatabaseException
- - an error has occurred on the database.OptimisticLockException
- - an error has occurred using the optimistic lock feature.
-
executeInUnitOfWork
public Object executeInUnitOfWork(UnitOfWorkImpl unitOfWork, AbstractRecord translationRow) throws DatabaseException, OptimisticLockException INTERNAL: Override query execution where Session is a UnitOfWork.If there are objects in the cache return the results of the cache lookup.
- Parameters:
unitOfWork
- - the session in which the receiver will be executed.translationRow
- - the arguments- Returns:
- An object, the result of executing the query.
- Throws:
DatabaseException
- - an error has occurred on the database.OptimisticLockException
- - an error has occurred using the optimistic lock feature.
-
execute
public Object execute(AbstractSession session, AbstractRecord translationRow) throws DatabaseException, OptimisticLockException INTERNAL: Execute the query. If there are objects in the cache return the results of the cache lookup.- Parameters:
session
- - the session in which the receiver will be executed.- Returns:
- An object, the result of executing the query.
- Throws:
DatabaseException
- - an error has occurred on the database.OptimisticLockException
- - an error has occurred using the optimistic lock feature.
-
extractRemoteResult
INTERNAL: Extract the correct query result from the transporter. -
getAccessor
INTERNAL: Return the accessor. -
getAccessors
INTERNAL: Return the accessors. -
getArguments
INTERNAL: Return the arguments for use with the pre-defined query option -
getArgumentParameterTypes
INTERNAL: Used to calculate parameter types in JPQL -
getArgumentTypes
INTERNAL: Return the argumentTypes for use with the pre-defined query option -
getArgumentTypeNames
INTERNAL: Return the argumentTypeNames for use with the pre-defined query option These are used pre-initialization to construct the argumentTypes list. -
setArgumentTypes
INTERNAL: Set the argumentTypes for use with the pre-defined query option -
setArgumentTypeNames
INTERNAL: Set the argumentTypes for use with the pre-defined query option -
setArguments
INTERNAL: Set the arguments for use with the pre-defined query option. Maintain the argumentTypes as well. -
getArgumentValues
INTERNAL: Return the argumentValues for use with argumented queries. -
setArgumentValues
INTERNAL: Set the argumentValues for use with argumented queries. -
getCall
OBSOLETE: Return the call for this query. This call contains the SQL and argument list.- See Also:
-
getDatasourceCall
ADVANCED: Return the call for this query. This call contains the SQL and argument list.- See Also:
-
getDatasourceCalls
ADVANCED: Return the calls for this query. This method can be called for queries with multiple calls This call contains the SQL and argument list.- See Also:
-
getCascadePolicy
public int getCascadePolicy()INTERNAL: Return the cascade policy. -
getDescriptor
INTERNAL: Return the descriptor assigned with the reference class -
getDescriptors
INTERNAL: This is here only for JPA queries and currently only populated for JPA queries. JPAQuery is a jpa class and currently not part of the core. -
getDomainClassNounName
INTERNAL: TopLink_sessionName_domainClass. Cached in properties -
getName
PUBLIC: Return the name of the query -
getParameterDelimiter
INTERNAL: Return the String used to delimit an SQL parameter. -
getParameterDelimiterChar
public char getParameterDelimiterChar()INTERNAL: Return the char used to delimit an SQL parameter. -
getProperties
INTERNAL: Property support for use by mappings. -
getProperty
INTERNAL: Property support used by mappings to store temporary stuff in the query. -
getQueryNounName
INTERNAL: TopLink_sessionName_domainClass_queryClass_queryName (if exist). Cached in properties -
getQueryMechanism
INTERNAL: Return the mechanism assigned to the query -
hasQueryMechanism
public boolean hasQueryMechanism()INTERNAL: Check if the mechanism has been set yet, used for lazy init. -
getQueryTimeout
public int getQueryTimeout()PUBLIC: Return the number of seconds the driver will wait for a Statement to execute to the given number of seconds.- See Also:
-
getQueryTimeoutUnit
PUBLIC: Return the unit of time the driver will wait for a Statement to execute.- See Also:
-
getDefaultRedirector
INTERNAL: Returns the specific default redirector for this query type. There are numerous default query redirectors. See ClassDescriptor for their types. -
getRedirectorForQuery
PUBLIC: Return the query redirector. A redirector can be used in a query to replace its execution with the execution of code. This can be used for named or parameterized queries to allow dynamic configuration of the query base on the query arguments.- See Also:
-
getRedirector
PUBLIC: Return the query redirector. A redirector can be used in a query to replace its execution with the execution of code. This can be used for named or parameterized queries to allow dynamic configuration of the query base on the query arguments.- See Also:
-
getReferenceClass
PUBLIC: Return the domain class associated with this query. By default this is null, but should be overridden in subclasses. -
getReferenceClassName
INTERNAL: return the name of the reference class. Added for Mapping Workbench removal of classpath dependency. Overridden by subclasses. -
getSelectionCriteria
PUBLIC: Return the selection criteria of the query. This should only be used with expression queries, null will be returned for others. -
getSensorName
INTERNAL: TopLink_sessionName_domainClass_queryClass_queryName (if exist)_operationName (if exist). Cached in properties -
getSession
INTERNAL: Return the current session. -
getExecutionSession
INTERNAL: Return the execution session. This is the session used to build objects returned by the query. -
setExecutionSession
INTERNAL: Set the execution session. This is the session used to build objects returned by the query. -
getSessionName
PUBLIC: Return the name of the session that the query should be executed under. This can be with the session broker to override the default session. -
getSQLStatement
PUBLIC: Return the SQL statement of the query. This can only be used with statement queries. -
getJPQLString
PUBLIC: Return the JPQL string of the query. -
getEJBQLString
PUBLIC: Return the EJBQL string of the query. -
getHintString
PUBLIC: Return the current database hint string of the query. -
getSQLString
ADVANCED: Return the SQL string of the query. This can be used for SQL queries. This can also be used for normal queries if they have been prepared, (i.e. query.prepareCall()).- See Also:
-
getSQLStrings
ADVANCED: Return the SQL strings of the query. Used for queries with multiple calls This can be used for SQL queries. This can also be used for normal queries if they have been prepared, (i.e. query.prepareCall()).- See Also:
-
getShouldBindAllParameters
INTERNAL: Returns the internal tri-state value of shouldBindParameters used far cascading these settings -
getSourceMapping
INTERNAL: -
getTranslatedSQLString
ADVANCED: This can be used to access a queries translated SQL if they have been prepared, (i.e. query.prepareCall()). The Record argument is one of (Record, XMLRecord) that contains the query arguments.- See Also:
-
getTranslatedSQLStrings
ADVANCED: This can be used to access a queries translated SQL if they have been prepared, (i.e. query.prepareCall()). This method can be used for queries with multiple calls.- See Also:
-
getTranslationRow
INTERNAL: Return the row for translation -
hasAccessor
public boolean hasAccessor()INTERNAL: returns true if the accessor has already been set. The getAccessor() will attempt to lazily initialize it. -
hasProperties
public boolean hasProperties()INTERNAL: Return if any properties exist in the query. -
hasArguments
public boolean hasArguments()INTERNAL: Return if any arguments exist in the query. -
hasSessionName
public boolean hasSessionName()PUBLIC: Return if a name of the session that the query should be executed under has been specified. This can be with the session broker to override the default session. -
ignoreBindAllParameters
public void ignoreBindAllParameters()PUBLIC: Session's shouldBindAllParameters() defines whether to bind or not (default setting) -
ignoreCacheStatement
public void ignoreCacheStatement()PUBLIC: Session's shouldCacheAllStatements() defines whether to cache or not (default setting) -
isCallQuery
public boolean isCallQuery()PUBLIC: Return true if this query uses SQL, a stored procedure, or SDK call. -
isCascadeOfAggregateDelete
public boolean isCascadeOfAggregateDelete()INTERNAL: Returns true if this query has been created as the result of cascading a delete of an aggregate collection in a UnitOfWork CR 2811 -
isDataModifyQuery
public boolean isDataModifyQuery()PUBLIC: Return if this is a data modify query. -
isDataReadQuery
public boolean isDataReadQuery()PUBLIC: Return if this is a data read query. -
isValueReadQuery
public boolean isValueReadQuery()PUBLIC: Return if this is a value read query. -
isDirectReadQuery
public boolean isDirectReadQuery()PUBLIC: Return if this is a direct read query. -
isDeleteAllQuery
public boolean isDeleteAllQuery()PUBLIC: Return if this is a delete all query. -
isDeleteObjectQuery
public boolean isDeleteObjectQuery()PUBLIC: Return if this is a delete object query. -
isExpressionQuery
public boolean isExpressionQuery()PUBLIC: Return true if this query uses an expression query mechanism -
isModifyAllQuery
public boolean isModifyAllQuery()PUBLIC: Return true if this is a modify all query. -
isModifyQuery
public boolean isModifyQuery()PUBLIC: Return true if this is a modify query. -
isUpdateAllQuery
public boolean isUpdateAllQuery()PUBLIC: Return true if this is an update all query. -
isUpdateObjectQuery
public boolean isUpdateObjectQuery()PUBLIC: Return true if this is an update object query. -
getFlushOnExecute
PUBLIC: If executed against a RepeatableWriteUnitOfWork if this attribute is true EclipseLink will write changes to the database before executing the query. -
isInsertObjectQuery
public boolean isInsertObjectQuery()PUBLIC: Return true if this is an insert object query. -
isObjectLevelModifyQuery
public boolean isObjectLevelModifyQuery()PUBLIC: Return true if this is an object level modify query. -
isObjectLevelReadQuery
public boolean isObjectLevelReadQuery()PUBLIC: Return true if this is an object level read query. -
isObjectBuildingQuery
public boolean isObjectBuildingQuery()PUBLIC: Return if this is an object building query. -
isPrepared
public boolean isPrepared()INTERNAL: Queries are prepared when they are executed and then do not need to be prepared on subsequent executions. This method returns true if this query has been prepared. Updating the settings on a query will 'un-prepare' the query. -
isReadAllQuery
public boolean isReadAllQuery()PUBLIC: Return true if this is a read all query. -
isReadObjectQuery
public boolean isReadObjectQuery()PUBLIC: Return true if this is a read object query. -
isReadQuery
public boolean isReadQuery()PUBLIC: Return true if this is a read query. -
isReportQuery
public boolean isReportQuery()PUBLIC: Return true if this is a report query. -
isResultSetMappingQuery
public boolean isResultSetMappingQuery()PUBLIC: Return true if this is a result set mapping query. -
isSQLCallQuery
public boolean isSQLCallQuery()PUBLIC: Return true if this query uses an SQL query mechanism . -
isJPQLCallQuery
public boolean isJPQLCallQuery()PUBLIC: Return true if this query uses an JPQL query mechanism . -
isUserDefined
public boolean isUserDefined()INTERNAL: Return true if the query is a custom user defined query. -
isUserDefinedSQLCall
public boolean isUserDefinedSQLCall()INTERNAL: Return true if the query is a custom user defined SQL call query. -
isDefaultPropertiesQuery
public boolean isDefaultPropertiesQuery()INTERNAL: Return true if the query uses default properties. This is used to determine if this query is cacheable. i.e. does not use any properties that may conflict with another query with the same EJBQL or selection criteria. -
isWriteObjectQuery
public boolean isWriteObjectQuery()PUBLIC: Return true if this is a write object query. -
maintainCache
public void maintainCache()PUBLIC: Set for the identity map (cache) to be maintained. This is the default. -
prepare
INTERNAL: This is different from 'prepareForExecution' in that this is called on the original query, and the other is called on the copy of the query. This query is copied for concurrency so this prepare can only setup things that will apply to any future execution of this query. Resolve the queryTimeout using the DescriptorQueryManager if required.- Throws:
QueryException
-
copyFromQuery
INTERNAL: Copy all setting from the query. This is used to morph queries from one type to the other. By default this calls prepareFromQuery, but additional properties may be required to be copied as prepareFromQuery only copies properties that affect the SQL. -
prepareFromQuery
INTERNAL: Prepare the query from the prepared query. This allows a dynamic query to prepare itself directly from a prepared query instance. This is used in the JPQL parse cache to allow preparsed queries to be used to prepare dynamic queries. This only copies over properties that are configured through JPQL. -
prepareCall
ADVANCED: Pre-generate the call/SQL for the query. This method takes a Session and an implementor of Record (DatebaseRow or XMLRecord). This can be used to access the SQL for a query without executing it. To access the call use, query.getCall(), or query.getSQLString() for the SQL. Note the SQL will have argument markers in it (i.e. "?"). To translate these use query.getTranslatedSQLString(session, translationRow).- Throws:
QueryException
- See Also:
-
prepareCustomQuery
INTERNAL: Set the properties needed to be cascaded into the custom query. -
prepareForExecution
INTERNAL: Prepare the receiver for execution in a session. In particular, set the descriptor of the receiver to the ClassDescriptor for the appropriate class for the receiver's object.- Throws:
QueryException
-
prepareForRemoteExecution
protected void prepareForRemoteExecution() -
redirectQuery
public Object redirectQuery(QueryRedirector redirector, DatabaseQuery queryToRedirect, AbstractSession session, AbstractRecord translationRow) INTERNAL: Use a EclipseLink redirector to redirect this query to a method. Added for bug 3241138 -
remoteExecute
-
remoteExecute
INTERNAL: -
removeProperty
INTERNAL: Property support used by mappings. -
replaceValueHoldersIn
INTERNAL: replace the value holders in the specified result object(s) -
retrieveBypassCache
public void retrieveBypassCache()ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is retrieved by the find methods and by the execution of queries. Calling this method will set a retrieve bypass to true. -
buildArgumentFields
INTERNAL: Build the list of arguments fields from the argument names and types. -
rowFromArguments
public AbstractRecord rowFromArguments(List argumentValues, AbstractSession session) throws QueryException INTERNAL: Translate argumentValues into a database row.- Throws:
QueryException
-
setAccessors
INTERNAL: Set the list of connection accessors to execute the query on. -
setAccessor
INTERNAL: Set the accessor, the query must always use the same accessor for database access. This is required to support connection pooling. -
setDatasourceCall
PUBLIC: Used to define a store procedure or SQL query. -
setCall
PUBLIC: Used to define a store procedure or SQL query. -
setCascadePolicy
public void setCascadePolicy(int policyConstant) INTERNAL: Set the cascade policy. -
setDescriptor
INTERNAL: Set the descriptor for the query. -
setJPQLString
PUBLIC: Set the JPQL string of the query. If arguments are required in the string they will be preceded by ":" then the argument name. The JPQL arguments must also be added as argument to the query. -
setEJBQLString
PUBLIC: Set the EJBQL string of the query. If arguments are required in the string they will be preceded by "?" then the argument number. -
setFlushOnExecute
PUBLIC: If executed against a RepeatableWriteUnitOfWork if this attribute is true EclipseLink will write changes to the database before executing the query. -
setHintString
Used to set a database hint string on the query. This should be the full hint string including the comment delimiters. The hint string will be generated into the SQL string after the SELECT/INSERT/UPDATE/DELETE instruction.Example:
readAllQuery.setHintString("/*+ index(scott.emp ix_emp) * /");
would result in SQL like:select /*+ index(scott.emp ix_emp) * / from scott.emp emp_alias
This method will cause a query to re-prepare if it has already been executed.
- Parameters:
newHintString
- the hint string to be added into the SQL call.
-
setIsPrepared
public void setIsPrepared(boolean isPrepared) INTERNAL: If changes are made to the query that affect the derived SQL or Call parameters the query needs to be prepared again.Automatically called internally.
-
isExecutionClone
public boolean isExecutionClone()INTERNAL: PERF: Return if the query is an execution clone. This allow the clone during execution to be avoided in the cases when the query has already been clone elsewhere. -
setIsExecutionClone
public void setIsExecutionClone(boolean isExecutionClone) INTERNAL: PERF: Set if the query is an execution clone. This allow the clone during execution to be avoided in the cases when the query has already been clone elsewhere. -
isCustomQueryUsed
INTERNAL: PERF: Return if this query will use the descriptor custom query instead of executing itself. -
isCustomSelectionQuery
protected boolean isCustomSelectionQuery()INTERNAL: If the query mechanism is a call query mechanism and there are no arguments on the query then it must be a foreign reference custom selection query. -
setIsCustomQueryUsed
protected void setIsCustomQueryUsed(boolean isCustomQueryUsed) INTERNAL: PERF: Set if this query will use the descriptor custom query instead of executing itself.- Parameters:
isCustomQueryUsed
- Custom query flag asboolean
.
-
setIsUserDefined
public void setIsUserDefined(boolean isUserDefined) INTERNAL: Set if the query is a custom user defined query. -
setIsUserDefinedSQLCall
public void setIsUserDefinedSQLCall(boolean isUserDefinedSQLCall) INTERNAL: Set if the query is a custom user defined sql call query. -
setName
PUBLIC: Set the query's name. Queries can be named and added to a descriptor or the session and then referenced by name. -
setParameterDelimiter
INTERNAL: Set the String char used to delimit an SQL parameter. -
setProperties
INTERNAL: Property support used by mappings. -
setProperty
INTERNAL: Property support used by mappings to store temporary stuff. -
setQueryMechanism
Set the query mechanism for the query. -
setQueryTimeout
public void setQueryTimeout(int queryTimeout) PUBLIC: Set the number of seconds the driver will wait for a Statement to execute to the given number of seconds. If the limit is exceeded, a DatabaseException is thrown. queryTimeout - the new query timeout limit in seconds; DefaultTimeout is the default, which redirects to DescriptorQueryManager's queryTimeout.- See Also:
-
setQueryTimeoutUnit
-
setRedirector
PUBLIC: Set the query redirector. A redirector can be used in a query to replace its execution with the execution of code. This can be used for named or parameterized queries to allow dynamic configuration of the query base on the query arguments.- See Also:
-
setSelectionCriteria
PUBLIC: To any user of this object. Set the selection criteria of the query. This method be used when dealing with expressions. -
setSession
INTERNAL: Set the session for the query -
setSessionName
PUBLIC: Set the name of the session that the query should be executed under. This can be with the session broker to override the default session. -
setShouldBindAllParameters
public void setShouldBindAllParameters(boolean shouldBindAllParameters) PUBLIC: Bind all arguments to any SQL statement. -
setShouldBindAllParameters
INTERNAL: Sets the internal tri-state value of shouldBindAllParams Used to cascade this value to other queries -
setShouldCacheStatement
public void setShouldCacheStatement(boolean shouldCacheStatement) PUBLIC: Cache the prepared statements, this requires full parameter binding as well. -
setShouldMaintainCache
public void setShouldMaintainCache(boolean shouldMaintainCache) PUBLIC: Set if the identity map (cache) should be used or not. If not the cache check will be skipped and the result will not be put into the identity map. By default the identity map is always maintained. -
setShouldPrepare
public void setShouldPrepare(boolean shouldPrepare) PUBLIC: Set if the query should be prepared. EclipseLink automatically prepares queries to generate their SQL only once, one each execution of the query the SQL does not need to be generated again only the arguments need to be translated. This option is provide to disable this optimization as in can cause problems with certain types of queries that require dynamic SQL based on their arguments.These queries include:
- Expressions that make use of 'equal' where the argument value has the potential to be null, this can cause problems on databases that require IS NULL, instead of = NULL.
- Expressions that make use of 'in' and that use parameter binding, this will cause problems as the in values must be bound individually.
-
setShouldRetrieveBypassCache
public void setShouldRetrieveBypassCache(boolean shouldRetrieveBypassCache) ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is retrieved by the find methods and by the execution of queries. -
setShouldReturnGeneratedKeys
public void setShouldReturnGeneratedKeys(boolean shouldReturnGeneratedKeys) ADVANCED: JPA flag used to control the behavior of IDENTITY generation. This flag specifies the behavior when data is retrieved by the find methods and by the execution of queries.This flag is only applicable to Insert queries and will only apply if the database platform supports
Statement.RETURN_GENERATED_KEYS
-
setShouldStoreBypassCache
public void setShouldStoreBypassCache(boolean shouldStoreBypassCache) ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is read from the database and when data is committed into the database. -
setShouldValidateUpdateCallCacheUse
public void setShouldValidateUpdateCallCacheUse(boolean shouldCheckUpdateCallCacheUse) INTERNAL: Set if additional validation should be performed before the query uses the update call cache. -
setShouldUseWrapperPolicy
public void setShouldUseWrapperPolicy(boolean shouldUseWrapperPolicy) ADVANCED: The wrapper policy can be enable on a query. -
setSourceMapping
INTERNAL: -
setSQLStatement
PUBLIC: To any user of this object. Set the SQL statement of the query. This method should only be used when dealing with statement objects. -
setSQLString
PUBLIC: To any user of this object. Set the SQL string of the query. This method should only be used when dealing with user defined SQL strings. If arguments are required in the string they will be preceded by "#" then the argument name. Warning: Allowing an unverified SQL string to be passed into this method makes your application vulnerable to SQL injection attacks. -
setTranslationRow
INTERNAL: Set the row for translation -
shouldBindAllParameters
public boolean shouldBindAllParameters()PUBLIC: Bind all arguments to any SQL statement. -
shouldAllowNativeSQLQuery
public boolean shouldAllowNativeSQLQuery(boolean projectAllowsNativeQueries) INTERNAL: Return true if this individual query should allow native a SQL call to be issued. -
shouldCacheStatement
public boolean shouldCacheStatement()PUBLIC: Cache the prepared statements, this requires full parameter binding as well. -
shouldCascadeAllParts
public boolean shouldCascadeAllParts()PUBLIC: Flag used to determine if all parts should be cascaded -
shouldCascadeByMapping
public boolean shouldCascadeByMapping()PUBLIC: Mappings should be checked to determined if the current operation should be cascaded to the objects referenced. -
shouldCascadeOnlyDependentParts
public boolean shouldCascadeOnlyDependentParts()INTERNAL: Flag used for unit of works cascade policy. -
shouldCascadeParts
public boolean shouldCascadeParts()PUBLIC: Flag used to determine if any parts should be cascaded -
shouldCascadePrivateParts
public boolean shouldCascadePrivateParts()PUBLIC: Flag used to determine if any private parts should be cascaded -
shouldCloneCall
public boolean shouldCloneCall()INTERNAL: Flag used to determine if the call needs to be cloned. -
shouldIgnoreBindAllParameters
public boolean shouldIgnoreBindAllParameters()PUBLIC: Local shouldBindAllParameters() should be ignored, Session's shouldBindAllParameters() should be used. -
shouldIgnoreCacheStatement
public boolean shouldIgnoreCacheStatement()PUBLIC: Local shouldCacheStatement() should be ignored, Session's shouldCacheAllStatements() should be used. -
shouldMaintainCache
public boolean shouldMaintainCache()PUBLIC: Return if the identity map (cache) should be used or not. If not the cache check will be skipped and the result will not be put into the identity map. By default the identity map is always maintained. -
shouldPrepare
public boolean shouldPrepare()PUBLIC: Return if the query should be prepared. EclipseLink automatically prepares queries to generate their SQL only once, one each execution of the query the SQL does not need to be generated again only the arguments need to be translated. This option is provide to disable this optimization as in can cause problems with certain types of queries that require dynamic SQL based on their arguments.These queries include:
- Expressions that make use of 'equal' where the argument value has the potential to be null, this can cause problems on databases that require IS NULL, instead of = NULL.
- Expressions that make use of 'in' and that use parameter binding, this will cause problems as the in values must be bound individually.
-
shouldPrepare
INTERNAL: Check if the query should be prepared, or dynamic, depending on the arguments. This allows null parameters to affect the SQL, such as stored procedure default values, or IS NULL, or insert defaults. -
shouldRetrieveBypassCache
public boolean shouldRetrieveBypassCache()ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is retrieved by the find methods and by the execution of queries. -
shouldReturnGeneratedKeys
public boolean shouldReturnGeneratedKeys()ADVANCED: JPA flag used to control the behavior of IDENTITY generation. This flag specifies the behavior when data is retrieved by the find methods and by the execution of queries.This flag is only applicable to Insert queries and will only apply if the database platform supports
Statement.RETURN_GENERATED_KEYS
-
shouldStoreBypassCache
public boolean shouldStoreBypassCache()ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is read from the database and when data is committed into the database. -
shouldUseWrapperPolicy
public boolean shouldUseWrapperPolicy()ADVANCED: The wrapper policy can be enabled on a query. -
shouldValidateUpdateCallCacheUse
public boolean shouldValidateUpdateCallCacheUse()ADVANCED: Return true if additional validation should be performed before the query uses the update call cache, false otherwise. -
storeBypassCache
public void storeBypassCache()ADVANCED: JPA flag used to control the behavior of the shared cache. This flag specifies the behavior when data is read from the database and when data is committed into the database. Calling this method will set a store bypass to true. Note: For a cache store mode of REFRESH, see refreshIdentityMapResult() from ObjectLevelReadQuery. -
toString
-
setIsNativeConnectionRequired
public void setIsNativeConnectionRequired(boolean isNativeConnectionRequired) ADVANCED: Set if the descriptor requires usage of a native (unwrapped) JDBC connection. This may be required for some Oracle JDBC support when a wrapping DataSource is used. -
isNativeConnectionRequired
public boolean isNativeConnectionRequired()ADVANCED: Return if the descriptor requires usage of a native (unwrapped) JDBC connection. This may be required for some Oracle JDBC support when a wrapping DataSource is used. -
getDoNotRedirect
public boolean getDoNotRedirect()This method is used in combination with redirected queries. If a redirector is set on the query or there is a default redirector on the Descriptor setting this value to true will force EclipseLink to ignore the redirector during execution. This setting will be used most often when reexecuting the query within a redirector. -
setDoNotRedirect
public void setDoNotRedirect(boolean doNotRedirect) This method is used in combination with redirected queries. If a redirector is set on the query or there is a default redirector on the Descriptor setting this value to true will force EclipseLink to ignore the redirector during execution. This setting will be used most often when reexecuting the query within a redirector. -
getBatchObjects
INTERNAL: Return temporary map of batched objects. -
setBatchObjects
INTERNAL: Set temporary map of batched objects. -
setAllowNativeSQLQuery
INTERNAL: Set to true if this individual query should be marked to bypass a persistence unit level disallow SQL queries flag. -
hasNullableArguments
public boolean hasNullableArguments()INTERNAL: Return if the query has any nullable arguments. -
getNullableArguments
INTERNAL: Return the list of arguments to check for null. If any are null, the query needs to be re-prepared. -
setNullableArguments
INTERNAL: Set the list of arguments to check for null. If any are null, the query needs to be re-prepared.
-