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.configMethods in org.jdbi.v3.core.config with parameters of type StatementCustomizerModifier and TypeMethodDescriptiondefault ThisConfigurable.addCustomizer(StatementCustomizer customizer) 
- 
Uses of StatementCustomizer in org.jdbi.v3.core.statementMethods in org.jdbi.v3.core.statement that return StatementCustomizerModifier and TypeMethodDescriptionstatic StatementCustomizerStatementCustomizers.fetchSize(int fetchSize) Set the number of rows to fetch from the database in a single batch.static StatementCustomizerStatementCustomizers.maxFieldSize(int maxFieldSize) Sets the limit of large variable size types likeVARCHAR.static StatementCustomizerStatementCustomizers.maxRows(int maxRows) Limit number of rows returned.static StatementCustomizerStatementCustomizers.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.