| Package | Description |
|---|---|
| org.jdbi.v3.core |
Start with
DBI and Handle |
| Modifier and Type | Method and Description |
|---|---|
<X extends Exception> |
Jdbi.useHandle(HandleConsumer<X> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<X extends Exception> |
Jdbi.useTransaction(HandleConsumer<X> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<X extends Exception> |
Handle.useTransaction(HandleConsumer<X> callback)
Executes
callback in a transaction. |
<X extends Exception> |
Jdbi.useTransaction(TransactionIsolationLevel level,
HandleConsumer<X> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<X extends Exception> |
Handle.useTransaction(TransactionIsolationLevel level,
HandleConsumer<X> callback)
Executes
callback in a transaction. |
Copyright © 2017. All rights reserved.