See: Description
| Interface | Description |
|---|---|
| ConnectionFactory |
Supplies
Connection instances to a created Handle. |
| HandleCallback<T,X extends Exception> |
Callback that accepts a Handle that remains open for the duration
of the callback invocation.
|
| HandleConsumer<X extends Exception> |
Callback that accepts a
Handle and returns no result. |
| Class | Description |
|---|---|
| Handle |
This represents a connection to the database system.
|
| Jdbi |
Main entry point; configurable wrapper around a JDBC
DataSource. |
| Exception | Description |
|---|---|
| CloseException |
Thrown when an exception occurs while attempting to close a database resource.
|
| ConnectionException | |
| JdbiException |
Base unchecked exception for exceptions thrown from jdbi.
|
The 'core' package hosts the top level interface into jdbi core. Jdbi takes a JDBC DataSource or equivalent and provides a configurable fluent interface. It provides the Handle type for executing JDBC operations and transforming the returned result sets into reasonable Java types.
Copyright © 2017. All rights reserved.