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

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

Uses of GenericRawResults in com.j256.ormlite.dao
 

Methods in com.j256.ormlite.dao that return GenericRawResults
 GenericRawResults<Object[]> Dao.queryRaw(String query, DataType[] columnTypes, String... arguments)
          Similar to the Dao.queryRaw(String, String...) but instead of an array of String results being returned by the iterator, this uses the column-types parameter to return an array of Objects instead.
 GenericRawResults<Object[]> BaseDaoImpl.queryRaw(String query, DataType[] columnTypes, String... arguments)
           
<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.
 GenericRawResults<String[]> Dao.queryRaw(String query, String... arguments)
          Similar to the Dao.iterator(PreparedQuery) except it returns a RawResults object associated with the SQL select query argument.
 GenericRawResults<String[]> BaseDaoImpl.queryRaw(String query, String... arguments)
           
 

Uses of GenericRawResults in com.j256.ormlite.stmt
 

Classes in com.j256.ormlite.stmt that implement GenericRawResults
 class RawResultsImpl<T>
          Handler for our raw results objects which does the conversion for various different results: String[], Object[], and user defined .
 

Methods in com.j256.ormlite.stmt that return GenericRawResults
 GenericRawResults<Object[]> StatementExecutor.queryRaw(ConnectionSource connectionSource, String query, DataType[] columnTypes, String[] arguments)
          Return a results object associated with an internal iterator that returns Object[] results.
<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.
 GenericRawResults<String[]> StatementExecutor.queryRaw(ConnectionSource connectionSource, String query, String[] arguments)
          Return a results object associated with an internal iterator that returns String[] results.
 



Copyright © 2011. All Rights Reserved.