Package | Description |
---|---|
org.skife.jdbi.v2 |
Start with
DBI and Handle |
org.skife.jdbi.v2.sqlobject.mixins |
Modifier and Type | Method and Description |
---|---|
<ReturnType> |
IDBI.inTransaction(TransactionCallback<ReturnType> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<ReturnType> |
DBI.inTransaction(TransactionCallback<ReturnType> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<ReturnType> |
IDBI.inTransaction(TransactionIsolationLevel isolation,
TransactionCallback<ReturnType> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<ReturnType> |
DBI.inTransaction(TransactionIsolationLevel isolation,
TransactionCallback<ReturnType> callback) |
void |
IDBI.useHandle(HandleConsumer callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
void |
DBI.useHandle(HandleConsumer callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
void |
IDBI.useTransaction(TransactionConsumer callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
void |
DBI.useTransaction(TransactionConsumer callback) |
void |
IDBI.useTransaction(TransactionIsolationLevel isolation,
TransactionConsumer callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
void |
DBI.useTransaction(TransactionIsolationLevel isolation,
TransactionConsumer callback) |
<ReturnType> |
IDBI.withHandle(HandleCallback<ReturnType> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
<ReturnType> |
DBI.withHandle(HandleCallback<ReturnType> callback)
A convenience function which manages the lifecycle of a handle and yields it to a callback
for use by clients.
|
Modifier and Type | Method and Description |
---|---|
<ReturnType> |
GetHandle.withHandle(HandleCallback<ReturnType> callback)
A convenience function which manages the lifecycle of the handle associated to this sql object,
and yields it to a callback for use by clients.
|
Copyright © 2018. All rights reserved.