Package | Description |
---|---|
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.
|
com.j256.ormlite.support |
Database support classes.
|
Modifier and Type | Method and Description |
---|---|
GenericRowMapper<T> |
BaseDaoImpl.getSelectStarRowMapper() |
GenericRowMapper<T> |
Dao.getSelectStarRowMapper()
Return a row mapper that is suitable for mapping results from a query to select * (star).
|
GenericRowMapper<T> |
RuntimeExceptionDao.getSelectStarRowMapper() |
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 |
PreparedStmt<T>
|
interface |
PreparedUpdate<T>
Interface returned by the
UpdateBuilder.prepare() which supports custom UPDATE statements. |
Modifier and Type | Class and Description |
---|---|
class |
StatementExecutor<T,ID>
Executes SQL statements for a particular table in a particular database.
|
Modifier and Type | Method and Description |
---|---|
GenericRowMapper<T> |
StatementExecutor.getSelectStarRowMapper()
Return a row mapper suitable for mapping 'select *' queries.
|
Constructor and Description |
---|
RawResultsImpl(ConnectionSource connectionSource,
DatabaseConnection connection,
Class<?> clazz,
CompiledStatement compiledStmt,
GenericRowMapper<T> rowMapper,
ObjectCache objectCache) |
SelectIterator(Class<?> dataClass,
Dao<T,ID> classDao,
GenericRowMapper<T> rowMapper,
ConnectionSource connectionSource,
DatabaseConnection connection,
CompiledStatement compiledStmt,
ObjectCache objectCache)
If the statement parameter is null then this won't log information
|
Modifier and Type | Class and Description |
---|---|
class |
BaseMappedQuery<T,ID>
Abstract mapped statement for queries which handle the creating of a new object and the row mapping functionality.
|
class |
MappedPreparedStmt<T,ID>
Mapped statement used by the
StatementBuilder.prepareStatement(Long, boolean) method. |
class |
MappedQueryForFieldEq<T,ID>
Mapped statement for querying for an object by a single field.
|
class |
MappedRefresh<T,ID>
Mapped statement for refreshing the fields in an object.
|
Modifier and Type | Method and Description |
---|---|
<T> Object |
DatabaseConnection.queryForOne(String statement,
Object[] args,
FieldType[] argfieldTypes,
GenericRowMapper<T> rowMapper,
ObjectCache objectCache)
Perform a SQL query with the associated SQL statement, arguments, and types and returns a single result.
|
<T> Object |
DatabaseConnectionProxy.queryForOne(String statement,
Object[] args,
FieldType[] argfieldTypes,
GenericRowMapper<T> rowMapper,
ObjectCache objectCache) |
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.