Uses of Package
org.jdbi.v3.core.argument
Package
Description
The
argument
classes translate Java types into JDBC parameters.
The
array
package binds Java arrays and collections to SQL arrays, and
handles mapping array result types back to Java arrays and collections.
The
config
classes define a configuration registry starting from
each Jdbi
instance.
The
statement
package provides most of the Fluent API
to drive statement execution.guava
provides extra types that are commonly needed beyond built
in JDK types.joda-time
provides improved date and time types to pre-Java 8 applications.
The
postgres
plugin provides improved support for
java.time
, hstore
, uuid
, and enum
types when configured with a recent Postgres database server.-
ClassDescriptionAn
ArgumentFactory
base class for arguments of typeT
.Represents an argument to a prepared statement.Inspect a value with optional static type information and produce anArgument
that binds the value to a prepared statement.ArgumentFactory extension interface that allows preparing arguments for efficient batch binding.A registry for ArgumentFactory instances.Returns an Argument based on a name.Inspect a value with optional static qualified type information and produce anArgument
that binds the value to a prepared statement.QualifiedArgumentFactory extension interface that allows preparing arguments for efficient batch binding. -
-
ClassDescriptionRepresents an argument to a prepared statement.Inspect a value with optional static type information and produce an
Argument
that binds the value to a prepared statement.ArgumentFactory extension interface that allows preparing arguments for efficient batch binding. -
ClassDescriptionRepresents an argument to a prepared statement.Inspect a value with optional static qualified type information and produce an
Argument
that binds the value to a prepared statement.QualifiedArgumentFactory extension interface that allows preparing arguments for efficient batch binding. -
-
ClassDescriptionRepresents an argument to a prepared statement.Returns an Argument based on a name.
-
ClassDescriptionInspect a value with optional static type information and produce an
Argument
that binds the value to a prepared statement. -
ClassDescriptionInspect a value with optional static qualified type information and produce an
Argument
that binds the value to a prepared statement.QualifiedArgumentFactory extension interface that allows preparing arguments for efficient batch binding. -
ClassDescriptionAn
ArgumentFactory
base class for arguments of typeT
.Inspect a value with optional static type information and produce anArgument
that binds the value to a prepared statement.ArgumentFactory extension interface that allows preparing arguments for efficient batch binding. -
ClassDescriptionAn
ArgumentFactory
base class for arguments of typeT
.Represents an argument to a prepared statement.Inspect a value with optional static type information and produce anArgument
that binds the value to a prepared statement.ArgumentFactory extension interface that allows preparing arguments for efficient batch binding.Factory that usesPreparedStatement.setObject(int, Object, int)
to bind values.