| 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 |
|---|---|
PreparedBatch |
Handle.prepareBatch(String sql)
Prepare a batch to execute.
|
| Modifier and Type | Method and Description |
|---|---|
PreparedBatch |
PreparedBatch.add()
Add the current binding as a saved batch and clear the binding.
|
PreparedBatch |
PreparedBatch.add(Map<String,?> args)
Bind arguments from a Map, add the binding as a saved batch,
then clear the current binding.
|
PreparedBatch |
PreparedBatch.add(Object... args)
Bind arguments positionally, add the binding as a saved batch, and
then clear the current binding.
|
Copyright © 2017. All rights reserved.