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. 
 

Uses of PreparedQuery in com.j256.ormlite.dao
 

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 PreparedQuery parameter.
 SelectIterator<T,ID> BaseJdbcDao.iterator(PreparedQuery<T> preparedQuery)
           
 List<T> Dao.query(PreparedQuery<T> preparedQuery)
          Query for the items in the object table which match the PreparedQuery.
 List<T> BaseJdbcDao.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 BaseJdbcDao.queryForFirst(PreparedQuery<T> preparedQuery)
           
 

Uses of PreparedQuery in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt that return PreparedQuery
 PreparedQuery<T> QueryBuilder.prepareQuery()
          Build and return a PreparedQuery object which then can be used by Dao.query(PreparedQuery) and Dao.iterator(PreparedQuery) methods.
 

Methods in com.j256.ormlite.stmt with parameters of type PreparedQuery
 SelectIterator<T,ID> StatementExecutor.buildIterator(BaseJdbcDao<T,ID> classDao, DatabaseAccess jdbcTemplate, PreparedQuery<T> preparedQuery)
          Create and return an SelectIterator for the class with a jdbcTemplate and mapped statement.
 List<T> StatementExecutor.query(DatabaseAccess jdbcTemplate, PreparedQuery<T> preparedQuery)
          Return a list of all of the data in the table that matches the PreparedQuery.
 T StatementExecutor.queryForFirst(DatabaseAccess jdbcTemplate, PreparedQuery<T> preparedQuery)
          Return the first object that matches the PreparedQuery or null if none.
 



Copyright © 2010. All Rights Reserved.