Uses of Interface
org.jdbi.v3.sqlobject.customizer.SqlStatementParameterCustomizer
Package
Description
The
sqlobject.customizer
package provides annotations
that customize the execution of a statement.
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 SqlStatementParameterCustomizer in org.jdbi.v3.sqlobject.customizer
Modifier and TypeMethodDescriptiondefault SqlStatementParameterCustomizer
SqlStatementCustomizerFactory.createForParameter
(Annotation annotation, Class<?> sqlObjectType, Method method, Parameter param, int index, Type paramType) Used to create customizers for annotations on parameters -
Uses of SqlStatementParameterCustomizer in org.jdbi.v3.sqlobject.statement
Modifier and TypeMethodDescriptionBindParameterCustomizerFactory.createForParameter
(Class<?> sqlObjectType, Method method, Parameter param, int index, Type type) ParameterCustomizerFactory.createForParameter
(Class<?> sqlObjectType, Method method, Parameter param, int index, Type type) Creates parameter customizer used to bind sql statement parameters when parameter is not explicitly annotated