Package | Description |
---|---|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
com.j256.ormlite.stmt.mapped |
Compiled SQL query statements.
|
Modifier and Type | Interface and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
MappedPreparedStmt<T,ID>
Mapped statement used by the
StatementBuilder.prepareStatement(Long, boolean) method. |
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.