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

Packages that use PreparedStmt
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.stmt.mapped Compiled SQL query statements. 
 

Uses of PreparedStmt in com.j256.ormlite.stmt
 

Subinterfaces of PreparedStmt in com.j256.ormlite.stmt
 interface PreparedDelete<T>
          Interface returned by the DeleteBuilder.prepare() which supports custom DELETE statements.
 interface PreparedQuery<T>
          Interface returned by the QueryBuilder.prepare() which supports custom SELECT queries.
 interface PreparedUpdate<T>
          Interface returned by the UpdateBuilder.prepare() which supports custom UPDATE statements.
 

Methods in com.j256.ormlite.stmt with parameters of type PreparedStmt
 SelectIterator<T,ID> StatementExecutor.buildIterator(BaseDaoImpl<T,ID> classDao, ConnectionSource connectionSource, PreparedStmt<T> preparedStmt)
          Create and return an SelectIterator for the class using a prepared statement.
 List<T> StatementExecutor.query(ConnectionSource connectionSource, PreparedStmt<T> preparedStmt)
          Return a list of all of the data in the table that matches the PreparedStmt.
 T StatementExecutor.queryForFirst(DatabaseConnection databaseConnection, PreparedStmt<T> preparedStmt)
          Return the first object that matches the PreparedStmt or null if none.
 

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

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



Copyright © 2011. All Rights Reserved.