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

Packages that use GenericRowMapper
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. 
 

Uses of GenericRowMapper in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao that return GenericRowMapper
 GenericRowMapper<T> RuntimeExceptionDao.getSelectStarRowMapper()
           
 GenericRowMapper<T> Dao.getSelectStarRowMapper()
          Return a row mapper that is suitable for mapping results from a query to select * (star).
 GenericRowMapper<T> BaseDaoImpl.getSelectStarRowMapper()
           
 

Uses of GenericRowMapper in com.j256.ormlite.stmt
 

Subinterfaces of GenericRowMapper 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 PreparedStmt<T>
          Parent interface for the PreparedQuery, PreparedUpdate, and PreparedDelete interfaces.
 interface PreparedUpdate<T>
          Interface returned by the UpdateBuilder.prepare() which supports custom UPDATE statements.
 

Classes in com.j256.ormlite.stmt that implement GenericRowMapper
 class StatementExecutor<T,ID>
          Executes SQL statements for a particular table in a particular database.
 

Methods in com.j256.ormlite.stmt that return GenericRowMapper
 GenericRowMapper<T> StatementExecutor.getSelectStarRowMapper()
          Return a row mapper suitable for mapping 'select *' queries.
 

Constructors in com.j256.ormlite.stmt with parameters of type GenericRowMapper
RawResultsImpl(ConnectionSource connectionSource, DatabaseConnection connection, String query, 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, String statement, ObjectCache objectCache)
          If the statement parameter is null then this won't log information
 

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

Classes in com.j256.ormlite.stmt.mapped that implement GenericRowMapper
 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) method.
 class MappedQueryForId<T,ID>
          Mapped statement for querying for an object by its ID.
 class MappedRefresh<T,ID>
          Mapped statement for refreshing the fields in an object.
 

Uses of GenericRowMapper in com.j256.ormlite.support
 

Methods in com.j256.ormlite.support with parameters of type GenericRowMapper
<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.
 



This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.