| Package | Description |
|---|---|
| org.jdbi.v3.core.config |
The
config classes define a configuration registry starting from
each Jdbi instance. |
| org.jdbi.v3.core.statement |
The
statement package provides most of the Fluent API
to drive statement execution. |
| Modifier and Type | Method and Description |
|---|---|
default This |
Configurable.addCustomizer(StatementCustomizer customizer) |
| Modifier and Type | Method and Description |
|---|---|
static 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 like
VARCHAR. |
static StatementCustomizer |
StatementCustomizers.maxRows(int maxRows)
Limit number of rows returned.
|
static StatementCustomizer |
StatementCustomizers.statementTimeout(int seconds)
Set a timeout on the statement.
|
| Modifier and Type | Method and Description |
|---|---|
SqlStatements |
SqlStatements.addCustomizer(StatementCustomizer customizer)
Provides a means for custom statement modification.
|
Copyright © 2019. All rights reserved.