Package | Description |
---|---|
com.j256.ormlite.dao |
Database Access Object classes.
|
com.j256.ormlite.stmt |
SQL statement generation and processing.
|
com.j256.ormlite.stmt.mapped |
Compiled SQL query statements.
|
Modifier and Type | Method and Description |
---|---|
protected PreparedQuery<T> |
BaseForeignCollection.getPreparedQuery() |
Modifier and Type | Method and Description |
---|---|
long |
BaseDaoImpl.countOf(PreparedQuery<T> preparedQuery) |
long |
Dao.countOf(PreparedQuery<T> preparedQuery)
Returns the number of rows in the table associated with the prepared query passed in.
|
long |
RuntimeExceptionDao.countOf(PreparedQuery<T> preparedQuery) |
CloseableWrappedIterable<T> |
BaseDaoImpl.getWrappedIterable(PreparedQuery<T> preparedQuery) |
CloseableWrappedIterable<T> |
Dao.getWrappedIterable(PreparedQuery<T> preparedQuery)
Same as
Dao.getWrappedIterable() but with a prepared query parameter. |
CloseableWrappedIterable<T> |
RuntimeExceptionDao.getWrappedIterable(PreparedQuery<T> preparedQuery) |
CloseableIterator<T> |
BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery) |
CloseableIterator<T> |
Dao.iterator(PreparedQuery<T> preparedQuery)
Same as
Dao.iterator() but with a prepared query parameter. |
CloseableIterator<T> |
RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery) |
CloseableIterator<T> |
BaseDaoImpl.iterator(PreparedQuery<T> preparedQuery,
int resultFlags) |
CloseableIterator<T> |
Dao.iterator(PreparedQuery<T> preparedQuery,
int resultFlags)
Same as
Dao.iterator(PreparedQuery) but while specifying flags for the results. |
CloseableIterator<T> |
RuntimeExceptionDao.iterator(PreparedQuery<T> preparedQuery,
int resultFlags) |
List<T> |
BaseDaoImpl.query(PreparedQuery<T> preparedQuery) |
List<T> |
Dao.query(PreparedQuery<T> preparedQuery)
Query for the items in the object table which match the prepared query.
|
List<T> |
RuntimeExceptionDao.query(PreparedQuery<T> preparedQuery) |
T |
BaseDaoImpl.queryForFirst(PreparedQuery<T> preparedQuery) |
T |
Dao.queryForFirst(PreparedQuery<T> preparedQuery)
Query for and return the first item in the object table which matches the PreparedQuery.
|
T |
RuntimeExceptionDao.queryForFirst(PreparedQuery<T> preparedQuery) |
Modifier and Type | Method and Description |
---|---|
PreparedQuery<T> |
QueryBuilder.prepare()
Build and return a prepared query that can be used by
Dao.query(PreparedQuery) or
Dao.iterator(PreparedQuery) methods. |
PreparedQuery<T> |
Where.prepare()
A short-cut for calling
QueryBuilder.prepare() . |
Modifier and Type | Class and Description |
---|---|
class |
MappedPreparedStmt<T,ID>
Mapped statement used by the
StatementBuilder.prepareStatement(Long, boolean) method. |
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.