| Package | Description |
|---|---|
| org.jdbi.v3.core |
The 'core' package hosts the top level interface into jdbi core.
|
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Method and Description |
|---|---|
Query |
Handle.createQuery(String sql)
Return a Query instance that executes a statement
with bound parameters and maps the result set into Java types.
|
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.