Package | Description |
---|---|
javax.persistence |
The javax.persistence package contains the classes and interfaces that define the contracts
between a persistence provider and the managed classes and the clients of the Java Persistence API.
|
Modifier and Type | Method and Description |
---|---|
Query |
EntityManager.createNamedQuery(java.lang.String name)
Create an instance of Query for executing a
named query (in EJB QL or native SQL).
|
Query |
EntityManager.createNativeQuery(java.lang.String sqlString)
Create an instance of Query for executing
a native SQL statement, e.g., for update or delete.
|
Query |
EntityManager.createNativeQuery(java.lang.String sqlString,
java.lang.Class resultClass)
Create an instance of Query for executing
a native SQL query.
|
Query |
EntityManager.createNativeQuery(java.lang.String sqlString,
java.lang.String resultSetMapping)
Create an instance of Query for executing
a native SQL query.
|
Query |
EntityManager.createQuery(java.lang.String ejbqlString)
Create an instance of Query for executing an
EJB QL statement.
|
Query |
Query.setFirstResult(int startPosition)
Set the position of the first result to retrieve.
|
Query |
Query.setFlushMode(FlushModeType flushMode)
Set the flush mode type to be used for the query execution.
|
Query |
Query.setHint(java.lang.String hintName,
java.lang.Object value)
Set an implementation-specific hint.
|
Query |
Query.setMaxResults(int maxResult)
Set the maximum number of results to retrieve.
|
Query |
Query.setParameter(int position,
java.util.Calendar value,
TemporalType temporalType)
Bind an instance of java.util.Calendar to a positional parameter.
|
Query |
Query.setParameter(int position,
java.util.Date value,
TemporalType temporalType)
Bind an instance of java.util.Date to a positional parameter.
|
Query |
Query.setParameter(int position,
java.lang.Object value)
Bind an argument to a positional parameter.
|
Query |
Query.setParameter(java.lang.String name,
java.util.Calendar value,
TemporalType temporalType)
Bind an instance of java.util.Calendar to a named parameter.
|
Query |
Query.setParameter(java.lang.String name,
java.util.Date value,
TemporalType temporalType)
Bind an instance of java.util.Date to a named parameter.
|
Query |
Query.setParameter(java.lang.String name,
java.lang.Object value)
Bind an argument to a named parameter.
|