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
 

Fields in com.j256.ormlite.dao declared as PreparedQuery
protected  PreparedQuery<T> BaseForeignCollection.preparedQuery
           
 

Methods in com.j256.ormlite.dao with parameters of type PreparedQuery
 CloseableIterator<T> Dao.iterator(PreparedQuery<T> preparedQuery)
          Same as Dao.iterator() but with a prepared query parameter.
 SelectIterator<T,ID> BaseDaoImpl.iterator(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 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() method.
 



Copyright © 2011. All Rights Reserved.