Uses of Interface
org.jdbi.v3.core.config.Configurable
Package
Description
The 'core' package hosts the top level interface into jdbi core.
The
config
classes define a configuration registry starting from
each Jdbi
instance.
The
extension
classes allow you to extend Jdbi
's
functionality by declaring interface types that may attach to Handle
instances.
The
statement
package provides most of the Fluent API
to drive statement execution.-
Uses of Configurable in org.jdbi.v3.core
Modifier and TypeClassDescriptionclass
This represents a connection to the database system.class
Main entry point; configurable wrapper around a JDBCDataSource
. -
Uses of Configurable in org.jdbi.v3.core.config
-
Uses of Configurable in org.jdbi.v3.core.extension
Modifier and TypeInterfaceDescriptioninterface
A handle supplier for extension implementors. -
Uses of Configurable in org.jdbi.v3.core.statement
Modifier and TypeClassDescriptionclass
Represents a group of non-prepared statements to be sent to the RDMBS in one "request".class
Used for invoking stored procedures.final class
Access to Database Metadata.class
Represents a prepared batch statement.class
Statement providing convenience result handling for SQL queries.class
Represents a number of SQL statements delimited by semicolon which will be executed in order in a batch statement.class
SqlStatement<This extends SqlStatement<This>>
This class provides the common functions betweenQuery
andUpdate
.class
Used for INSERT, UPDATE, and DELETE statements