| Package | Description |
|---|---|
| org.jdbi.v3.core |
Start with
DBI and Handle |
| org.jdbi.v3.core.statement |
Interfaces used to alter JDBI's handling of JDBC Statements
|
| Modifier and Type | Method and Description |
|---|---|
Query |
Handle.createQuery(String sql)
Return a default Query instance which can be executed later, as long as this handle remains open.
|
Query |
Handle.select(String sql,
Object... args)
Convenience method which creates a query with the given positional arguments
|
| Modifier and Type | Method and Description |
|---|---|
Query |
Query.concurrentUpdatable()
Specify that the result set should be concurrent updatable.
|
Query |
Query.fetchForward()
Specify that the fetch order should be forward, uses the underlying
Statement.setFetchDirection(int) |
Query |
Query.fetchReverse()
Specify that the fetch order should be reversed, uses the underlying
Statement.setFetchDirection(int) |
Query |
Query.setFetchSize(int fetchSize)
Specify the fetch size for the query.
|
Query |
Query.setMaxFieldSize(int maxFields)
Specify the maximum field size in the result set.
|
Query |
Query.setMaxRows(int maxRows)
Specify the maximum number of rows the query is to return.
|
Copyright © 2017. All rights reserved.