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

Packages that use GenericRowMapper
com.j256.ormlite.jdbc   
com.j256.ormlite.stmt SQL statement generation and processing. 
com.j256.ormlite.support Database support classes. 
 

Uses of GenericRowMapper in com.j256.ormlite.jdbc
 

Methods in com.j256.ormlite.jdbc with parameters of type GenericRowMapper
<T> Object
JdbcDatabaseAccess.queryForOne(String statement, Object[] args, int[] argFieldTypeVals, GenericRowMapper<T> rowMapper)
           
 

Uses of GenericRowMapper in com.j256.ormlite.stmt
 

Subinterfaces of GenericRowMapper in com.j256.ormlite.stmt
 interface PreparedQuery<T>
          Interface returned by the QueryBuilder.prepareQuery() which supports custom queries.
 

Constructors in com.j256.ormlite.stmt with parameters of type GenericRowMapper
SelectIterator(Class<T> dataClass, BaseJdbcDao<T,ID> classDao, GenericRowMapper<T> rowMapper, PreparedStmt preparedStatement, String statement)
          If the statement parameter is null then this won't log information
 

Uses of GenericRowMapper in com.j256.ormlite.support
 

Methods in com.j256.ormlite.support with parameters of type GenericRowMapper
<T> Object
DatabaseAccess.queryForOne(String statement, Object[] args, int[] argFieldTypeVals, GenericRowMapper<T> rowMapper)
          Perform a SQL query with the associated SQL statement, arguments, and types and returns a single result.
 



Copyright © 2010. All Rights Reserved.