Uses of Interface
com.j256.ormlite.dao.RawRowMapper

Packages that use RawRowMapper
com.j256.ormlite.dao Database Access Object classes. 
com.j256.ormlite.stmt SQL statement generation and processing. 
 

Uses of RawRowMapper in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao with parameters of type RawRowMapper
<T> List<T>
RawResults.getMappedResults(RawRowMapper<T> mapper)
          Deprecated. Return a list of results mapped by the mapper argument.
<T> CloseableIterator<T>
RawResults.iterator(RawRowMapper<T> mapper)
          Deprecated. Get an iterator which will return a T which is mapped from the String[] array raw results my the mapper argument.
<GR> GenericRawResults<GR>
BaseDaoImpl.queryRaw(String query, RawRowMapper<GR> mapper, String... arguments)
           
<UO> GenericRawResults<UO>
Dao.queryRaw(String query, RawRowMapper<UO> mapper, String... arguments)
          Similar to the Dao.queryRaw(String, String...) but this iterator returns rows that you can map yourself.
 

Uses of RawRowMapper in com.j256.ormlite.stmt
 

Methods in com.j256.ormlite.stmt with parameters of type RawRowMapper
<UO> GenericRawResults<UO>
StatementExecutor.queryRaw(ConnectionSource connectionSource, String query, RawRowMapper<UO> rowMapper, String[] arguments)
          Return a results object associated with an internal iterator is mapped by the user's rowMapper.
 



Copyright © 2011. All Rights Reserved.