| Package | Description |
|---|---|
| org.jdbi.v3.core |
The 'core' package hosts the top level interface into jdbi core.
|
| org.jdbi.v3.core.config |
The
config classes define a configuration registry starting from
each Jdbi instance. |
| org.jdbi.v3.core.extension |
The
extension classes allow you to extend Jdbi's
functionality by declaring interface types that may attach to Handle
instances. |
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Class and Description |
|---|---|
class |
Handle
This represents a connection to the database system.
|
class |
Jdbi
Main entry point; configurable wrapper around a JDBC
DataSource. |
| Modifier and Type | Method and Description |
|---|---|
default V |
JdbiCache.get(K key,
Configurable<?> configurable) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HandleSupplier
A handle supplier for extension implementors.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Batch
Represents a group of non-prepared statements to be sent to the RDMBS in one "request".
|
class |
Call
Used for invoking stored procedures.
|
class |
PreparedBatch
Represents a prepared batch statement.
|
class |
Query
Statement providing convenience result handling for SQL queries.
|
class |
Script
Represents a number of SQL statements which will be executed in a batch statement.
|
class |
SqlStatement<This extends SqlStatement<This>>
This class provides the common functions between
Query and
Update. |
class |
Update
Used for INSERT, UPDATE, and DELETE statements
|
Copyright © 2019. All rights reserved.