Package | Description |
---|---|
com.j256.ormlite.dao |
Database Access Object classes.
|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
Modifier and Type | Method and Description |
---|---|
RawRowMapper<T> |
BaseDaoImpl.getRawRowMapper() |
RawRowMapper<T> |
Dao.getRawRowMapper()
Return a row mapper that is suitable for use with
Dao.queryRaw(String, RawRowMapper, String...) . |
RawRowMapper<T> |
RuntimeExceptionDao.getRawRowMapper() |
Modifier and Type | Method and Description |
---|---|
<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. |
<UO> GenericRawResults<UO> |
RuntimeExceptionDao.queryRaw(String query,
RawRowMapper<UO> mapper,
String... arguments) |
Modifier and Type | Class and Description |
---|---|
class |
RawRowMapperImpl<T,ID>
Default row mapper when you are using the
Dao.queryRaw(String, RawRowMapper, String...) . |
Modifier and Type | Method and Description |
---|---|
RawRowMapper<T> |
StatementExecutor.getRawRowMapper()
Return a raw row mapper suitable for use with
Dao.queryRaw(String, RawRowMapper, String...) . |
Modifier and Type | Method and Description |
---|---|
<UO> GenericRawResults<UO> |
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.
|
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.