| Package | Description |
|---|---|
| org.jdbi.v3.core.result |
result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results. |
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Method and Description |
|---|---|
static ResultBearing |
ResultBearing.of(Supplier<ResultSet> resultSetSupplier,
StatementContext ctx)
Returns a ResultBearing backed by the given result set supplier and context.
|
| Modifier and Type | Method and Description |
|---|---|
static ResultProducer<ResultBearing> |
ResultProducers.returningGeneratedKeys(String... generatedKeyColumnNames)
Result producer that returns a
ResultBearing over the statement-generated keys. |
static ResultProducer<ResultBearing> |
ResultProducers.returningResults()
Result producer that returns a
ResultBearing over the statement result rows. |
| Modifier and Type | Class and Description |
|---|---|
class |
PreparedBatch
Represents a prepared batch statement.
|
class |
Query
Statement providing convenience result handling for SQL queries.
|
| Modifier and Type | Method and Description |
|---|---|
ResultBearing |
PreparedBatch.executeAndReturnGeneratedKeys(String... columnNames) |
ResultBearing |
Update.executeAndReturnGeneratedKeys(String... generatedKeyColumnNames)
Execute the statement and returns any auto-generated keys.
|
Copyright © 2019. All rights reserved.