|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 that return RawRowMapper | |
---|---|
RawRowMapper<T> |
RuntimeExceptionDao.getRawRowMapper()
|
RawRowMapper<T> |
Dao.getRawRowMapper()
Return a row mapper that is suitable for use with Dao.queryRaw(String, RawRowMapper, String...) . |
RawRowMapper<T> |
BaseDaoImpl.getRawRowMapper()
|
Methods in com.j256.ormlite.dao with parameters of type RawRowMapper | ||
---|---|---|
|
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. |
Uses of RawRowMapper in com.j256.ormlite.stmt |
---|
Classes in com.j256.ormlite.stmt that implement RawRowMapper | |
---|---|
class |
RawRowMapperImpl<T,ID>
Default row mapper when you are using the Dao.queryRaw(String, RawRowMapper, String...) . |
Methods in com.j256.ormlite.stmt that return RawRowMapper | |
---|---|
RawRowMapper<T> |
StatementExecutor.getRawRowMapper()
Return a raw row mapper suitable for use with Dao.queryRaw(String, RawRowMapper, String...) . |
Methods in com.j256.ormlite.stmt with parameters of type RawRowMapper | ||
---|---|---|
|
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |