Uses of Interface
org.jdbi.v3.core.argument.ArgumentFactory.Preparable
Packages that use ArgumentFactory.Preparable
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.-
Uses of ArgumentFactory.Preparable in org.jdbi.v3.core.argument
Classes in org.jdbi.v3.core.argument that implement ArgumentFactory.PreparableModifier and TypeClassDescriptionclassAnArgumentFactorybase class for arguments of typeT.classDeprecated.will be replaced by a pluginclassAnArgumentFactoryfor arguments that implementCharSequence.classclassArgument factory that matches a specified type and binds it as anObjectArgument.classFactory that usesPreparedStatement.setObject(int, Object, int)to bind values.Methods in org.jdbi.v3.core.argument with parameters of type ArgumentFactory.PreparableModifier and TypeMethodDescriptionQualifiedArgumentFactory.adapt(ConfigRegistry config, ArgumentFactory.Preparable factory) Adapts anArgumentFactory.Preparableinto a QualifiedArgumentFactory.Preparable.QualifiedArgumentFactory.Preparable.adapt(ConfigRegistry config, ArgumentFactory.Preparable factory) Adapts anArgumentFactory.Preparableinto a QualifiedArgumentFactory.Preparable The returned factory only matches qualified types with zero qualifiers. -
Uses of ArgumentFactory.Preparable in org.jdbi.v3.core.array
Classes in org.jdbi.v3.core.array that implement ArgumentFactory.PreparableModifier and TypeClassDescriptionclassBind a Java array orCollectionto a SQL array using theSqlArrayTypeFactoryfor the given type information.