Query<R> |
Query.addQueryHint(String hint) |
已过时。
Add a DB query hint to the SQL.
|
Query |
Session.createFilter(Object collection,
String queryString) |
已过时。
|
default Query<R> |
Query.setBigDecimal(int position,
BigDecimal val) |
已过时。
|
default Query<R> |
Query.setBigDecimal(String name,
BigDecimal val) |
已过时。
|
default Query<R> |
Query.setBigInteger(int position,
BigInteger val) |
已过时。
|
default Query<R> |
Query.setBigInteger(String name,
BigInteger val) |
已过时。
|
default Query<R> |
Query.setBinary(int position,
byte[] val) |
已过时。
|
default Query<R> |
Query.setBinary(String name,
byte[] val) |
已过时。
|
default Query<R> |
Query.setBoolean(int position,
boolean val) |
已过时。
|
default Query<R> |
Query.setBoolean(String name,
boolean val) |
已过时。
|
default Query<R> |
Query.setByte(int position,
byte val) |
已过时。
|
default Query<R> |
Query.setByte(String name,
byte val) |
已过时。
|
Query<R> |
Query.setCacheable(boolean cacheable) |
已过时。
Enable/disable second level query (result) caching for this query.
|
Query<R> |
Query.setCacheMode(CacheMode cacheMode) |
已过时。
(Re)set the current CacheMode in effect for this query.
|
Query<R> |
Query.setCacheRegion(String cacheRegion) |
已过时。
Set the name of the cache region where query results should be cached (if cached at all).
|
default Query<R> |
Query.setCalendar(int position,
Calendar val) |
已过时。
|
default Query<R> |
Query.setCalendar(String name,
Calendar value) |
已过时。
|
default Query<R> |
Query.setCalendarDate(int position,
Calendar val) |
已过时。
|
default Query<R> |
Query.setCalendarDate(String name,
Calendar value) |
已过时。
|
default Query<R> |
Query.setCharacter(int position,
char val) |
已过时。
|
default Query<R> |
Query.setCharacter(String name,
char val) |
已过时。
|
Query<R> |
Query.setComment(String comment) |
已过时。
Set the comment for this query.
|
default Query<R> |
Query.setDate(int position,
Date val) |
已过时。
|
default Query<R> |
Query.setDate(String name,
Date val) |
已过时。
|
default Query<R> |
Query.setDouble(int position,
double val) |
已过时。
|
default Query<R> |
Query.setDouble(String name,
double val) |
已过时。
|
Query<R> |
Query.setEntity(int position,
Object val) |
已过时。
|
Query<R> |
Query.setEntity(String name,
Object val) |
已过时。
|
Query<R> |
Query.setFetchSize(int fetchSize) |
已过时。
Sets a JDBC fetch size hint for the query.
|
Query<R> |
Query.setFirstResult(int startPosition) |
已过时。
|
default Query<R> |
Query.setFloat(int position,
float val) |
已过时。
|
default Query<R> |
Query.setFloat(String name,
float val) |
已过时。
|
Query<R> |
Query.setFlushMode(javax.persistence.FlushModeType flushMode) |
已过时。
|
Query<R> |
Query.setFlushMode(FlushMode flushMode) |
已过时。
|
default Query |
Query.setHibernateFirstResult(int firstRow) |
已过时。
|
default Query<R> |
Query.setHibernateFlushMode(FlushMode flushMode) |
已过时。
(Re)set the current FlushMode in effect for this query.
|
default Query |
Query.setHibernateMaxResults(int maxResults) |
已过时。
|
Query<R> |
Query.setHint(String hintName,
Object value) |
已过时。
|
default Query<R> |
Query.setInteger(int position,
int val) |
已过时。
|
default Query<R> |
Query.setInteger(String name,
int val) |
已过时。
|
default Query<R> |
Query.setLocale(int position,
Locale val) |
已过时。
|
default Query<R> |
Query.setLocale(String name,
Locale val) |
已过时。
|
Query<R> |
Query.setLockMode(String alias,
LockMode lockMode) |
已过时。
Set the LockMode to use for specific alias (as defined in the query's FROM clause).
|
Query<R> |
Query.setLockMode(javax.persistence.LockModeType lockMode) |
已过时。
|
Query<R> |
Query.setLockOptions(LockOptions lockOptions) |
已过时。
Set the lock options for the query.
|
default Query<R> |
Query.setLong(int position,
long val) |
已过时。
|
default Query<R> |
Query.setLong(String name,
long val) |
已过时。
|
Query<R> |
Query.setMaxResults(int maxResult) |
已过时。
|
Query<R> |
Query.setParameter(int position,
Object val) |
已过时。
Bind a positional query parameter using its inferred Type.
|
Query<R> |
Query.setParameter(int position,
Object val,
Type type) |
已过时。
Bind a value to a JDBC-style query parameter.
|
Query<R> |
Query.setParameter(int position,
Calendar value,
javax.persistence.TemporalType temporalType) |
已过时。
|
Query<R> |
Query.setParameter(int position,
Date value,
javax.persistence.TemporalType temporalType) |
已过时。
|
<P> Query<R> |
Query.setParameter(int position,
P val,
javax.persistence.TemporalType temporalType) |
已过时。
Bind a positional query parameter as some form of date/time using
the indicated temporal-type.
|
Query<R> |
Query.setParameter(String name,
Object val) |
已过时。
Bind a named query parameter using its inferred Type.
|
Query<R> |
Query.setParameter(String name,
Object val,
Type type) |
已过时。
Bind a named query parameter using the supplied Type
|
Query<R> |
Query.setParameter(String name,
Calendar value,
javax.persistence.TemporalType temporalType) |
已过时。
|
Query<R> |
Query.setParameter(String name,
Date value,
javax.persistence.TemporalType temporalType) |
已过时。
|
<P> Query<R> |
Query.setParameter(String name,
P val,
javax.persistence.TemporalType temporalType) |
已过时。
Bind a named query parameter as some form of date/time using
the indicated temporal-type.
|
Query<R> |
Query.setParameter(javax.persistence.Parameter<Calendar> param,
Calendar value,
javax.persistence.TemporalType temporalType) |
已过时。
|
Query<R> |
Query.setParameter(javax.persistence.Parameter<Date> param,
Date value,
javax.persistence.TemporalType temporalType) |
已过时。
|
<T> Query<R> |
Query.setParameter(javax.persistence.Parameter<T> param,
T value) |
已过时。
|
<P> Query<R> |
Query.setParameter(QueryParameter<P> parameter,
P val,
javax.persistence.TemporalType temporalType) |
已过时。
Bind a query parameter as some form of date/time using the indicated
temporal-type.
|
<P> Query<R> |
Query.setParameter(QueryParameter<P> parameter,
P val,
Type type) |
已过时。
Bind a query parameter using the supplied Type
|
<T> Query<R> |
Query.setParameter(QueryParameter<T> parameter,
T val) |
已过时。
Bind a query parameter using its inferred Type.
|
Query<R> |
Query.setParameterList(int position,
Object[] values) |
已过时。
|
Query<R> |
Query.setParameterList(int position,
Object[] values,
Type type) |
已过时。
|
Query<R> |
Query.setParameterList(int position,
Collection values) |
已过时。
|
Query<R> |
Query.setParameterList(int position,
Collection values,
Type type) |
已过时。
|
Query<R> |
Query.setParameterList(String name,
Object[] values) |
已过时。
Bind multiple values to a named query parameter.
|
Query<R> |
Query.setParameterList(String name,
Object[] values,
Type type) |
已过时。
Bind multiple values to a named query parameter.
|
Query<R> |
Query.setParameterList(String name,
Collection values) |
已过时。
Bind multiple values to a named query parameter.
|
Query<R> |
Query.setParameterList(String name,
Collection values,
Type type) |
已过时。
Bind multiple values to a named query parameter.
|
<P> Query<R> |
Query.setParameterList(QueryParameter<P> parameter,
Collection<P> values) |
已过时。
Bind multiple values to a query parameter using its inferred Type.
|
default Query<R> |
Query.setParameters(Object[] values,
Type[] types) |
已过时。
|
Query<R> |
Query.setProperties(Object bean) |
已过时。
Bind the property values of the given bean to named parameters of the query,
matching property names with parameter names and mapping property types to
Hibernate types using heuristics.
|
Query<R> |
Query.setProperties(Map bean) |
已过时。
Bind the values of the given Map for each named parameters of the query,
matching key names with parameter names and mapping value types to
Hibernate types using heuristics.
|
Query<R> |
Query.setReadOnly(boolean readOnly) |
已过时。
Set the read-only/modifiable mode for entities and proxies
loaded by this Query.
|
Query<R> |
Query.setResultTransformer(ResultTransformer transformer) |
已过时。
|
default Query<R> |
Query.setSerializable(int position,
Serializable val) |
已过时。
|
default Query<R> |
Query.setSerializable(String name,
Serializable val) |
已过时。
|
default Query<R> |
Query.setShort(int position,
short val) |
已过时。
|
default Query<R> |
Query.setShort(String name,
short val) |
已过时。
|
default Query<R> |
Query.setString(int position,
String val) |
已过时。
|
default Query<R> |
Query.setString(String name,
String val) |
已过时。
|
default Query<R> |
Query.setText(int position,
String val) |
已过时。
|
default Query<R> |
Query.setText(String name,
String val) |
已过时。
|
default Query<R> |
Query.setTime(int position,
Date val) |
已过时。
|
default Query<R> |
Query.setTime(String name,
Date val) |
已过时。
|
Query<R> |
Query.setTimeout(int timeout) |
已过时。
Set the query timeout in seconds.
|
default Query<R> |
Query.setTimestamp(int position,
Date val) |
已过时。
|
default Query<R> |
Query.setTimestamp(String name,
Date value) |
已过时。
|