Uses of Package
org.jdbi.v3.core.argument
Packages that use 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.-
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.argumentClassDescriptionAn
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. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.argument.internal
-
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.arrayClassDescriptionRepresents 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. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.codecClassDescriptionRepresents 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. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.config
-
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.core.statementClassDescriptionRepresents an argument to a prepared statement.Returns an Argument based on a name.
-
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.guavaClassDescriptionInspect a value with optional static type information and produce an
Argument
that binds the value to a prepared statement. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.guava.codecClassDescriptionInspect 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. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.jodatime2ClassDescriptionAn
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. -
Classes in org.jdbi.v3.core.argument used by org.jdbi.v3.postgresClassDescriptionAn
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.