Uses of Interface
org.jdbi.v3.core.statement.StatementCustomizer
Packages that use StatementCustomizer
Package
Description
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.-
Uses of StatementCustomizer in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type StatementCustomizerModifier and TypeMethodDescriptiondefault This
Configurable.addCustomizer
(StatementCustomizer customizer) -
Uses of StatementCustomizer in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement that return StatementCustomizerModifier and TypeMethodDescriptionstatic StatementCustomizer
StatementCustomizers.fetchSize
(int fetchSize) Set the number of rows to fetch from the database in a single batch.static StatementCustomizer
StatementCustomizers.maxFieldSize
(int maxFieldSize) Sets the limit of large variable size types likeVARCHAR
.static StatementCustomizer
StatementCustomizers.maxRows
(int maxRows) Limit number of rows returned.static StatementCustomizer
StatementCustomizers.statementTimeout
(int seconds) Set a timeout on the statement.Methods in org.jdbi.v3.core.statement with parameters of type StatementCustomizerModifier and TypeMethodDescriptionSqlStatements.addCustomizer
(StatementCustomizer customizer) Provides a means for custom statement modification.