Uses of Interface
ch.ivyteam.ivy.process.data.persistence.IIvyQuery
Packages that use IIvyQuery
-
Uses of IIvyQuery in ch.ivyteam.ivy.process.data.persistence
Methods in ch.ivyteam.ivy.process.data.persistence that return IIvyQueryModifier and TypeMethodDescriptionIIvyEntityManager.createNamedQuery(String name) Create an instance of Query for executing a named query (in the Java Persistence query language or in native SQL).IIvyEntityManager.createNativeQuery(String sqlString) Create an instance of Query for executing a native SQL statement, e.g., for update or delete.IIvyEntityManager.createNativeQuery(String sqlString, Class resultClass) Create an instance of Query for executing a native SQL query.IIvyEntityManager.createNativeQuery(String sqlString, String resultSetMapping) Create an instance of Query for executing a native SQL query.IIvyEntityManager.createQuery(String qlString) Create an instance of Query for executing a Java Persistence query language statement.IIvyQuery.setFirstResult(int startPosition) Set the position of the first result to retrieve.IIvyQuery.setFlushMode(javax.persistence.FlushModeType flushMode) Set the flush mode type to be used for the query execution.Set an implementation-specific hint.IIvyQuery.setMaxResults(int maxResult) Set the maximum number of results to retrieve.IIvyQuery.setParameter(int position, Object value) Bind an argument to a positional parameter.IIvyQuery.setParameter(int position, Calendar value, javax.persistence.TemporalType temporalType) Bind an instance of java.util.Calendar to a positional parameter.IIvyQuery.setParameter(int position, Date value, javax.persistence.TemporalType temporalType) Bind an instance of java.util.Date to a positional parameter.IIvyQuery.setParameter(String name, Object value) Bind an argument to a named parameter.IIvyQuery.setParameter(String name, Calendar value, javax.persistence.TemporalType temporalType) Bind an instance of java.util.Calendar to a named parameter.IIvyQuery.setParameter(String name, Date value, javax.persistence.TemporalType temporalType) Bind an instance of java.util.Date to a named parameter.