|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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[]> |
RuntimeExceptionDao.queryRaw(String query,
DataType[] columnTypes,
String... arguments)
|
|
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)
|
|
|
BaseDaoImpl.queryRaw(String query,
RawRowMapper<GR> mapper,
String... arguments)
|
|
|
RuntimeExceptionDao.queryRaw(String query,
RawRowMapper<UO> mapper,
String... arguments)
|
|
|
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[]> |
RuntimeExceptionDao.queryRaw(String query,
String... arguments)
|
|
GenericRawResults<String[]> |
Dao.queryRaw(String query,
String... arguments)
Similar to the Dao.iterator(PreparedQuery) except it returns a GenericRawResults 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,
ObjectCache objectCache)
Return a results object associated with an internal iterator that returns Object[] results. |
|
|
StatementExecutor.queryRaw(ConnectionSource connectionSource,
String query,
RawRowMapper<UO> rowMapper,
String[] arguments,
ObjectCache objectCache)
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,
ObjectCache objectCache)
Return a results object associated with an internal iterator that returns String[] results. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |