Uses of Interface
org.jdbi.v3.sqlobject.statement.ParameterCustomizerFactory
Package
Description
SQL Objects
The
sqlobject.statement
annotations declare the type of statement
that a SqlObject method should create, such as a @SqlQuery
to return rows or a
@SqlUpdate
to modify rows and return the modification count.-
Uses of ParameterCustomizerFactory in org.jdbi.v3.sqlobject
Modifier and TypeMethodDescriptionSqlObjects.getDefaultParameterCustomizerFactory()
Returns the configuredParameterCustomizerFactory
used to bind sql statement parameters when parameter is not explicitly annotated.Modifier and TypeMethodDescriptionSqlObjects.setDefaultParameterCustomizerFactory
(ParameterCustomizerFactory defaultParameterCustomizerFactory) Configures SqlObject to use the given default parameter customizer factory. -
Uses of ParameterCustomizerFactory in org.jdbi.v3.sqlobject.statement
Modifier and TypeClassDescriptionclass
Standard implementation ofParameterCustomizerFactory
that delegates toBindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type)
passing null for Annotation parameter.