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 |
---|---|
<UO> GenericRawResults<UO> |
BaseDaoImpl.queryRaw(String query,
DatabaseResultsMapper<UO> mapper,
String... arguments) |
<UO> GenericRawResults<UO> |
Dao.queryRaw(String query,
DatabaseResultsMapper<UO> mapper,
String... arguments)
Similar to the
Dao.queryRaw(String, RawRowMapper, String...) but this iterator returns rows that you can map
yourself using DatabaseResultsMapper . |
<UO> GenericRawResults<UO> |
RuntimeExceptionDao.queryRaw(String query,
DatabaseResultsMapper<UO> mapper,
String... arguments) |
Modifier and Type | Method and Description |
---|---|
<UO> GenericRawResults<UO> |
StatementExecutor.queryRaw(ConnectionSource connectionSource,
String query,
DatabaseResultsMapper<UO> mapper,
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.