Interface QueryProducerImplementor
- All Superinterfaces:
QueryProducer
- All Known Subinterfaces:
EventSource
,SessionImplementor
,SharedSessionContractImplementor
- All Known Implementing Classes:
AbstractDelegateSessionImplementor
,AbstractSharedSessionContract
,SessionDelegatorBaseImpl
,SessionImpl
,SharedSessionDelegatorBaseImpl
,StatelessSessionImpl
,ToOneDelegateSessionImplementor
-
Method Summary
Modifier and TypeMethodDescriptioncreateMutationQuery
(CriteriaDelete deleteQuery) Create aMutationQuery
from the given delete criteria treecreateMutationQuery
(CriteriaUpdate updateQuery) Create aMutationQuery
from the given update criteria treecreateMutationQuery
(String statementString) Create aMutationQuery
reference for the given HQL insert, update, or delete statement.Create aMutationQuery
instance for the given named insert, update, or delete HQL query.createNamedQuery
(String name) Deprecated.<R> QueryImplementor<R>
createNamedQuery
(String name, Class<R> resultClass) Create a typedQuery
instance for the given named query.createNativeMutationQuery
(String sqlString) Create aNativeQuery
instance for the given native SQL statement.createNativeQuery
(String sqlString) Deprecated.<R> NativeQueryImplementor<R>
createNativeQuery
(String sqlString, Class<R> resultClass) Create aNativeQuery
instance for the given native SQL query using an implicit mapping to the specified Java type.<R> NativeQueryImplementor<R>
createNativeQuery
(String sqlString, Class<R> resultClass, String tableAlias) Create aNativeQuery
instance for the given native SQL query using an implicit mapping to the specified Java entity type.createNativeQuery
(String sqlString, String resultSetMappingName) Deprecated.<R> NativeQueryImplementor<R>
createNativeQuery
(String sqlString, String resultSetMappingName, Class<R> resultClass) Create aNativeQuery
instance for the given native SQL query using an explicit mapping to the specified Java type.createQuery
(CriteriaDelete deleteQuery) Deprecated.<R> QueryImplementor<R>
createQuery
(CriteriaQuery<R> criteriaQuery) Create aQuery
for the given JPACriteriaQuery
.createQuery
(CriteriaUpdate updateQuery) Deprecated.<R> QueryImplementor<R>
createQuery
(TypedQueryReference<R> typedQueryReference) Create a typedQuery
instance for the given typed query reference.createQuery
(String queryString) Deprecated.<R> QueryImplementor<R>
createQuery
(String queryString, Class<R> resultClass) Create a typedQuery
instance for the given HQL query string and given query result type.getNamedNativeQuery
(String name) Deprecated.getNamedNativeQuery
(String name, String resultSetMapping) Deprecated.getNamedQuery
(String queryName) Create aQuery
instance for the named query.Methods inherited from interface org.hibernate.query.QueryProducer
createMutationQuery, createMutationQuery, createNamedSelectionQuery, createNamedSelectionQuery, createSelectionQuery, createSelectionQuery, createSelectionQuery
-
Method Details
-
getFactory
SessionFactoryImplementor getFactory() -
getHibernateFlushMode
FlushMode getHibernateFlushMode() -
getCacheMode
CacheMode getCacheMode() -
getNamedQuery
Description copied from interface:QueryProducer
Create aQuery
instance for the named query.- Specified by:
getNamedQuery
in interfaceQueryProducer
- Parameters:
queryName
- the name of a predefined named query- Returns:
- The
Query
instance for manipulation and execution
-
createQuery
Deprecated.Description copied from interface:QueryProducer
Create aQuery
instance for the given HQL query, or HQL insert, update, or delete statement.If a query has no explicit
select
list, the select list is inferred:- if there is exactly one root entity in the
from
clause, and it has no non-fetch
joins, then that root entity is the only element of the select list, or - if there is an entity with the alias
this
, then that entity is the only element of the select list, or - otherwise, the query is considered ambiguous, and this
method throws a
SemanticException
.
The query must have an explicit
from
clause, which can never be inferred.- Specified by:
createQuery
in interfaceQueryProducer
- Parameters:
queryString
- The HQL query- Returns:
- The
Query
instance for manipulation and execution - See Also:
- if there is exactly one root entity in the
-
createQuery
Description copied from interface:QueryProducer
Create a typedQuery
instance for the given HQL query string and given query result type.- If the query has a single item in the
select
list, then the select item must be assignable to the given result type. - Otherwise, if there are multiple select items, then the
select items will be packaged into an instance of the
result type. The result type must have an appropriate
constructor with parameter types matching the select items,
or it must be one of the types
Object[]
,List
,Map
, orTuple
.
If a query has no explicit
select
list, the select list is inferred from the given query result type:- if the result type is an entity type, the query must have
exactly one root entity in the
from
clause, it must be assignable to the result type, and the inferred select list will contain just that entity, or - otherwise, the select list contains every root entity and
every non-
fetch
joined entity, and each query result will be packaged into an instance of the result type, just as specified above.
If a query has no explicit
from
clause, and the given result type is an entity type, the root entity is inferred to be the result type.Passing
Object.class
as the query result type is not recommended. In this special case, this method has the same semantics as the overloadQueryProducer.createQuery(String)
.The returned
Query
may be executed by callingQuery.getResultList()
orQuery.getSingleResult()
.- Specified by:
createQuery
in interfaceQueryProducer
- Parameters:
queryString
- The HQL queryresultClass
- TheClass
object representing the query result type, which should not beObject.class
- Returns:
- The
Query
instance for manipulation and execution - See Also:
- If the query has a single item in the
-
createQuery
Description copied from interface:QueryProducer
Create a typedQuery
instance for the given typed query reference.- Specified by:
createQuery
in interfaceQueryProducer
- Parameters:
typedQueryReference
- the type query reference- Returns:
- The
Query
instance for execution - See Also:
-
createNamedQuery
Deprecated.Description copied from interface:QueryProducer
Create a typedQuery
instance for the given named query. The named query might be defined in HQL or in native SQL.- Specified by:
createNamedQuery
in interfaceQueryProducer
- Parameters:
name
- the name of a predefined named query- Returns:
- The
Query
instance for manipulation and execution - See Also:
-
createNamedQuery
Description copied from interface:QueryProducer
Create a typedQuery
instance for the given named query. The named query might be defined in HQL or in native SQL.- Specified by:
createNamedQuery
in interfaceQueryProducer
- Parameters:
name
- the name of a query defined in metadataresultClass
- the type of the query result- Returns:
- The
Query
instance for manipulation and execution - See Also:
-
createNativeQuery
Deprecated.Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL query.- Specified by:
createNativeQuery
in interfaceQueryProducer
- Parameters:
sqlString
- a native SQL query string- Returns:
- The
NativeQuery
instance for manipulation and execution - See Also:
-
createNativeQuery
Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL query using an implicit mapping to the specified Java type.- If the given class is an entity class, this method is equivalent
to
createNativeQuery(sqlString).addEntity(resultClass)
. - If the given class has a registered
JavaType
, then the query must return a result set with a single column whoseJdbcType
is compatible with thatJavaType
. - Otherwise, the select items will be packaged into an instance of
the result type. The result type must have an appropriate
constructor with parameter types matching the select items, or it
must be one of the types
Object[]
,List
,Map
, orTuple
.
- Specified by:
createNativeQuery
in interfaceQueryProducer
- Parameters:
sqlString
- The native (SQL) query stringresultClass
- The Java type to map results to- Returns:
- The
NativeQuery
instance for manipulation and execution - See Also:
- If the given class is an entity class, this method is equivalent
to
-
createNativeQuery
<R> NativeQueryImplementor<R> createNativeQuery(String sqlString, Class<R> resultClass, String tableAlias) Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL query using an implicit mapping to the specified Java entity type.The given class must be an entity class. This method is equivalent to
createNativeQuery(sqlString).addEntity(tableAlias, resultClass)
.- Specified by:
createNativeQuery
in interfaceQueryProducer
- Parameters:
sqlString
- Native (SQL) query stringresultClass
- The Java entity class to map results totableAlias
- The table alias for columns in the result set- Returns:
- The
NativeQuery
instance for manipulation and execution - See Also:
-
createNativeQuery
Deprecated.Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL query using an explicit mapping to the specified Java type.The given result set mapping name must identify a mapping defined by a
SqlResultSetMapping
annotation.- Specified by:
createNativeQuery
in interfaceQueryProducer
- Parameters:
sqlString
- The native (SQL) query stringresultSetMappingName
- The explicit result mapping name- Returns:
- The
NativeQuery
instance for manipulation and execution - See Also:
-
createNativeQuery
<R> NativeQueryImplementor<R> createNativeQuery(String sqlString, String resultSetMappingName, Class<R> resultClass) Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL query using an explicit mapping to the specified Java type.The given result set mapping name must identify a mapping defined by a
SqlResultSetMapping
annotation.- Specified by:
createNativeQuery
in interfaceQueryProducer
- Parameters:
sqlString
- The native (SQL) query stringresultSetMappingName
- The explicit result mapping name- Returns:
- The
NativeQuery
instance for manipulation and execution - See Also:
-
getNamedNativeQuery
Deprecated.Description copied from interface:QueryProducer
Get aNativeQuery
instance for a named native SQL query- Specified by:
getNamedNativeQuery
in interfaceQueryProducer
- Parameters:
name
- The name of the predefined query- Returns:
- The
NativeQuery
instance for manipulation and execution
-
getNamedNativeQuery
Deprecated.Description copied from interface:QueryProducer
Get aNativeQuery
instance for a named native SQL query- Specified by:
getNamedNativeQuery
in interfaceQueryProducer
- Parameters:
name
- The name of the predefined query- Returns:
- The
NativeQuery
instance for manipulation and execution
-
createMutationQuery
Description copied from interface:QueryProducer
Create aMutationQuery
reference for the given HQL insert, update, or delete statement.- Specified by:
createMutationQuery
in interfaceQueryProducer
- Parameters:
statementString
- The HQLinsert
,update
, ordelete
statement
-
createNamedMutationQuery
Description copied from interface:QueryProducer
Create aMutationQuery
instance for the given named insert, update, or delete HQL query. The named query might be defined as HQL) or native-SQL.- Specified by:
createNamedMutationQuery
in interfaceQueryProducer
-
createNativeMutationQuery
Description copied from interface:QueryProducer
Create aNativeQuery
instance for the given native SQL statement.- Specified by:
createNativeMutationQuery
in interfaceQueryProducer
- Parameters:
sqlString
- a native SQL statement string- Returns:
- The NativeQuery instance for manipulation and execution
-
createMutationQuery
Description copied from interface:QueryProducer
Create aMutationQuery
from the given update criteria tree- Specified by:
createMutationQuery
in interfaceQueryProducer
-
createMutationQuery
Description copied from interface:QueryProducer
Create aMutationQuery
from the given delete criteria tree- Specified by:
createMutationQuery
in interfaceQueryProducer
-
createQuery
Description copied from interface:QueryProducer
Create aQuery
for the given JPACriteriaQuery
.- Specified by:
createQuery
in interfaceQueryProducer
-
createQuery
Deprecated.Description copied from interface:QueryProducer
Create aMutationQuery
for the given JPACriteriaUpdate
- Specified by:
createQuery
in interfaceQueryProducer
-
createQuery
Deprecated.Description copied from interface:QueryProducer
Create aMutationQuery
for the given JPACriteriaDelete
- Specified by:
createQuery
in interfaceQueryProducer
-