Uses of Interface
com.j256.ormlite.stmt.PreparedQuery

Packages that use PreparedQuery
com.j256.ormlite.dao Database Access Object classes. 
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.stmt.mapped Compiled SQL query statements. 
 

Uses of PreparedQuery in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao that return PreparedQuery
protected  PreparedQuery<T> BaseForeignCollection.getPreparedQuery()
           
 

Methods in com.j256.ormlite.dao with parameters of type PreparedQuery
 long RuntimeExceptionDao.countOf(PreparedQuery<T> preparedQuery)
           
 long Dao.countOf(PreparedQuery<T> preparedQuery)
          Returns the number of rows in the table associated with the prepared query passed in.
 long BaseDaoImpl.countOf(PreparedQuery<T> preparedQuery)
           
 CloseableWrappedIterable<T> RuntimeExceptionDao.getWrappedIterable(PreparedQuery<T> preparedQuery)
           
 CloseableWrappedIterable<T> Dao.getWrappedIterable(PreparedQuery<T> preparedQuery)
          Same as Dao.getWrappedIterable() but with a prepared query parameter.
 CloseableWrappedIterable<T> BaseDaoImpl.getWrappedIterable(PreparedQuery<T> preparedQuery)
           
 CloseableIterator<T> RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery)
           
 CloseableIterator<T> Dao.iterator(PreparedQuery<T> preparedQuery)
          Same as Dao.iterator() but with a prepared query parameter.
 CloseableIterator<T> BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery)
           
 CloseableIterator<T> RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery, int resultFlags)
           
 CloseableIterator<T> Dao.iterator(PreparedQuery<T> preparedQuery, int resultFlags)
          Same as Dao.iterator(PreparedQuery) but while specifying flags for the results.
 CloseableIterator<T> BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery, int resultFlags)
           
 List<T> RuntimeExceptionDao.query(PreparedQuery<T> preparedQuery)
           
 List<T> Dao.query(PreparedQuery<T> preparedQuery)
          Query for the items in the object table which match the prepared query.
 List<T> BaseDaoImpl.query(PreparedQuery<T> preparedQuery)
           
 T RuntimeExceptionDao.queryForFirst(PreparedQuery<T> preparedQuery)
           
 T Dao.queryForFirst(PreparedQuery<T> preparedQuery)
          Query for and return the first item in the object table which matches the PreparedQuery.
 T BaseDaoImpl.queryForFirst(PreparedQuery<T> preparedQuery)
           
 

Uses of PreparedQuery in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return PreparedQuery
 PreparedQuery<T> Where.prepare()
          A short-cut for calling prepare() on the original QueryBuilder.prepare().
 PreparedQuery<T> QueryBuilder.prepare()
          Build and return a prepared query that can be used by Dao.query(PreparedQuery) or Dao.iterator(PreparedQuery) methods.
 

Uses of PreparedQuery in com.j256.ormlite.stmt.mapped
 

Classes in com.j256.ormlite.stmt.mapped that implement PreparedQuery
 class MappedPreparedStmt<T,ID>
          Mapped statement used by the StatementBuilder.prepareStatement(Long) method.
 



This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.