Uses of Interface
org.jdbi.v3.core.statement.StatementCustomizer
-
Packages that use StatementCustomizer Package Description org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.core.statement Thestatementpackage 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 StatementCustomizer Modifier and Type Method Description default ThisConfigurable. addCustomizer(StatementCustomizer customizer) -
Uses of StatementCustomizer in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement StatementCustomizer Modifier and Type Class Description (package private) classDefineNamedBindingsStatementCustomizerFields in org.jdbi.v3.core.statement with type parameters of type StatementCustomizer Modifier and Type Field Description private java.util.Collection<StatementCustomizer>SqlStatements. customizersMethods in org.jdbi.v3.core.statement that return StatementCustomizer Modifier and Type Method Description static 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 StatementCustomizer Modifier and Type Method Description private java.util.Collection<StatementCustomizer>BaseStatement. getCustomizers()(package private) java.util.Collection<StatementCustomizer>SqlStatements. getCustomizers()Methods in org.jdbi.v3.core.statement with parameters of type StatementCustomizer Modifier and Type Method Description SqlStatementsSqlStatements. 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 StatementCustomizer Modifier and Type Method Description (package private) voidBaseStatement. addCustomizers(java.util.Collection<StatementCustomizer> customizers)
-