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

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

Fields in com.j256.ormlite.stmt declared as GenericRowMapper
protected  GenericRowMapper<T> RawResultsImpl.rowMapper
           
 

Constructors in com.j256.ormlite.stmt with parameters of type GenericRowMapper
RawResultsImpl(ConnectionSource connectionSource, DatabaseConnection connection, String query, Class<?> clazz, CompiledStatement compiledStmt, String[] columnNames, GenericRowMapper<T> rowMapper)
           
SelectIterator(Class<?> dataClass, Dao<T,ID> classDao, GenericRowMapper<T> rowMapper, ConnectionSource connectionSource, DatabaseConnection connection, CompiledStatement compiledStmt, String statement)
          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() 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)
          Perform a SQL query with the associated SQL statement, arguments, and types and returns a single result.
 



Copyright © 2011. All Rights Reserved.