public interface BasicQueryContract
Modifier and Type | Method and Description |
---|---|
CacheMode |
getCacheMode()
Obtain the CacheMode in effect for this query.
|
String |
getCacheRegion()
Obtain the name of the second level query cache region in which query results will be stored (if they are
cached, see the discussion on
isCacheable() for more information). |
Integer |
getFetchSize()
Obtain the JDBC fetch size hint in effect for this query.
|
FlushMode |
getFlushMode()
Obtain the FlushMode in effect for this query.
|
Type[] |
getReturnTypes()
Return the Hibernate types of the query results.
|
Integer |
getTimeout()
Obtain the query timeout in seconds.
|
boolean |
isCacheable()
Are the results of this query eligible for second level query caching? This is different that second level
caching of any returned entities and collections.
|
boolean |
isReadOnly()
Should entities and proxies loaded by this Query be put in read-only mode? If the
read-only/modifiable setting was not initialized, then the default
read-only/modifiable setting for the persistence context is returned instead.
|
BasicQueryContract |
setCacheable(boolean cacheable)
Enable/disable second level query (result) caching for this query.
|
BasicQueryContract |
setCacheMode(CacheMode cacheMode)
(Re)set the current CacheMode in effect for this query.
|
BasicQueryContract |
setCacheRegion(String cacheRegion)
Set the name of the cache region where query results should be cached (if cached at all).
|
BasicQueryContract |
setFetchSize(int fetchSize)
Sets a JDBC fetch size hint for the query.
|
BasicQueryContract |
setFlushMode(FlushMode flushMode)
(Re)set the current FlushMode in effect for this query.
|
BasicQueryContract |
setReadOnly(boolean readOnly)
Set the read-only/modifiable mode for entities and proxies
loaded by this Query.
|
BasicQueryContract |
setTimeout(int timeout)
Set the query timeout in seconds.
|
FlushMode getFlushMode()
Session.getFlushMode()
,
FlushMode
BasicQueryContract setFlushMode(FlushMode flushMode)
flushMode
- The new FlushMode to use.this
, for method chaininggetFlushMode()
CacheMode getCacheMode()
Session.getCacheMode()
,
CacheMode
BasicQueryContract setCacheMode(CacheMode cacheMode)
cacheMode
- The new CacheMode to use.this
, for method chaininggetCacheMode()
boolean isCacheable()
SessionFactory
for this to happen. Usually that is
controlled by the hibernate.cache.use_query_cache
configuration setting.true
if the query results are eligible for caching, false
otherwise.AvailableSettings.USE_QUERY_CACHE
BasicQueryContract setCacheable(boolean cacheable)
cacheable
- Should the query results be cacheable?this
, for method chainingisCacheable()
String getCacheRegion()
isCacheable()
for more information). null
indicates that the
default region should be used.null
indicates
the default region.BasicQueryContract setCacheRegion(String cacheRegion)
cacheRegion
- the name of a query cache region, or null
to indicate that the default region
should be used.this
, for method chaininggetCacheRegion()
Integer getTimeout()
Statement.setQueryTimeout(int)
. Zero indicates no timeout.Statement.getQueryTimeout()
,
Statement.setQueryTimeout(int)
BasicQueryContract setTimeout(int timeout)
timeout
- the timeout in secondsthis
, for method chaininggetTimeout()
Integer getFetchSize()
Statement.setFetchSize(int)
. As defined b y JDBC, this value is a hint to the
driver to indicate how many rows to fetch from the database when more rows are needed.
NOTE : JDBC expressly defines this value as a hint. It may or may not have any effect on the actual
query execution and ResultSet processing depending on the driver.Statement.getFetchSize()
,
Statement.setFetchSize(int)
BasicQueryContract setFetchSize(int fetchSize)
fetchSize
- the fetch size hintthis
, for method chaininggetFetchSize()
boolean isReadOnly()
Query.setReadOnly(boolean)
,
The read-only/modifiable setting has no impact on entities/proxies returned by the
query that existed in the session before the query was executed.
BasicQueryContract setReadOnly(boolean readOnly)
readOnly
- true, entities and proxies loaded by the query will be put in read-only mode
false, entities and proxies loaded by the query will be put in modifiable modethis
, for method chainingTo set the default read-only/modifiable setting used for
entities and proxies that are loaded into the session:
,
PersistenceContext.setDefaultReadOnly(boolean)
,
Read-only entities are not dirty-checked and snapshots of persistent
state are not maintained. Read-only entities can be modified, but
changes are not persisted.
When a proxy is initialized, the loaded entity will have the same
read-only/modifiable setting as the uninitialized
proxy has, regardless of the session's current setting.
The read-only/modifiable setting has no impact on entities/proxies
returned by the query that existed in the session before the query was executed.
Type[] getReturnTypes()
Copyright © 2001-2017 Red Hat, Inc. All Rights Reserved.