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,
DataType[] columnTypes,
RawRowObjectMapper<UO> mapper,
String... arguments) |
<UO> GenericRawResults<UO> |
Dao.queryRaw(String query,
DataType[] columnTypes,
RawRowObjectMapper<UO> mapper,
String... arguments)
Similar to the
Dao.queryRaw(String, RawRowMapper, String...) but uses the column-types array to present an
array of object results to the mapper instead of strings. |
<UO> GenericRawResults<UO> |
RuntimeExceptionDao.queryRaw(String query,
DataType[] columnTypes,
RawRowObjectMapper<UO> mapper,
String... arguments) |
Modifier and Type | Method and Description |
---|---|
<UO> GenericRawResults<UO> |
StatementExecutor.queryRaw(ConnectionSource connectionSource,
String query,
DataType[] columnTypes,
RawRowObjectMapper<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.