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 ThisConfigurable.addCustomizer(StatementCustomizer customizer) -
Uses of StatementCustomizer in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement StatementCustomizerFields in org.jdbi.v3.core.statement with type parameters of type StatementCustomizerModifier and TypeFieldDescriptionprivate final Collection<StatementCustomizer>SqlStatements.customizersMethods 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 that return types with arguments of type StatementCustomizerModifier and TypeMethodDescriptionprivate Collection<StatementCustomizer>BaseStatement.getCustomizers()(package private) Collection<StatementCustomizer>SqlStatements.getCustomizers()Methods in org.jdbi.v3.core.statement with parameters of type StatementCustomizerModifier and TypeMethodDescriptionSqlStatements.addCustomizer(StatementCustomizer customizer) Provides a means for custom statement modification.voidBaseStatement.StatementCustomizerInvocation.call(StatementCustomizer t) Method parameters in org.jdbi.v3.core.statement with type arguments of type StatementCustomizerModifier and TypeMethodDescription(package private) voidBaseStatement.addCustomizers(Collection<StatementCustomizer> customizers)