Uses of Interface
org.jdbi.v3.core.statement.StatementBuilder
-
Packages that use StatementBuilder Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution. -
-
Uses of StatementBuilder in org.jdbi.v3.core
Fields in org.jdbi.v3.core declared as StatementBuilder Modifier and Type Field Description private StatementBuilderHandle. statementBuilderMethods in org.jdbi.v3.core that return StatementBuilder Modifier and Type Method Description StatementBuilderHandle. getStatementBuilder()Returns the currentStatementBuilderwhich is used to create new JDBCStatementobjects.Methods in org.jdbi.v3.core with parameters of type StatementBuilder Modifier and Type Method Description (package private) static HandleHandle. createHandle(Jdbi jdbi, Cleanable connectionCleaner, TransactionHandler transactionHandler, StatementBuilder statementBuilder, java.sql.Connection connection)HandleHandle. setStatementBuilder(StatementBuilder builder)Set the statement builder for this handle.Constructors in org.jdbi.v3.core with parameters of type StatementBuilder Constructor Description Handle(Jdbi jdbi, Cleanable connectionCleaner, TransactionHandler transactionHandler, StatementBuilder statementBuilder, java.sql.Connection connection) -
Uses of StatementBuilder in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement StatementBuilder Modifier and Type Class Description classDefaultStatementBuilderA StatementBuilder which will always create a new PreparedStatement.Methods in org.jdbi.v3.core.statement that return StatementBuilder Modifier and Type Method Description StatementBuilderStatementBuilderFactory. createStatementBuilder(java.sql.Connection conn)Creates a newStatementBuilderfrom aConnectionobject.
-