|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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,
ObjectCache objectCache,
int resultFlags)
Create and return an SelectIterator for the class using a prepared statement. |
List<T> |
StatementExecutor.query(ConnectionSource connectionSource,
PreparedStmt<T> preparedStmt,
ObjectCache objectCache)
Return a list of all of the data in the table that matches the PreparedStmt . |
T |
StatementExecutor.queryForFirst(DatabaseConnection databaseConnection,
PreparedStmt<T> preparedStmt,
ObjectCache objectCache)
Return the first object that matches the PreparedStmt or null if none. |
long |
StatementExecutor.queryForLong(DatabaseConnection databaseConnection,
PreparedStmt<T> preparedStmt)
Return a long value from a prepared query. |
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(Long) method. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |