Uses of Class
org.jdbi.v3.core.statement.SqlStatement
Packages that use SqlStatement
Package
Description
The
statement package provides most of the Fluent API
to drive statement execution.-
Uses of SqlStatement in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement with type parameters of type SqlStatementModifier and TypeClassDescriptionclassSqlStatement<This extends SqlStatement<This>>This class provides the common functions betweenQueryandUpdate.Subclasses of SqlStatement in org.jdbi.v3.core.statementModifier and TypeClassDescriptionclassUsed for invoking stored procedures.classRepresents a prepared batch statement.classStatement providing convenience result handling for SQL queries.classRepresents a number of SQL statements delimited by semicolon which will be executed in order in a batch statement.classUsed for INSERT, UPDATE, and DELETE statementsMethod parameters in org.jdbi.v3.core.statement with type arguments of type SqlStatementModifier and TypeMethodDescriptionfinal ThisSqlStatement.bindList(BiConsumer<SqlStatement, String> onEmpty, String key, Iterable<?> values) final ThisSqlStatement.bindList(BiConsumer<SqlStatement, String> onEmpty, String key, Object... values) final ThisSqlStatement.bindList(BiConsumer<SqlStatement, String> onEmpty, String key, Iterator<?> values) final ThisSqlStatement.bindList(BiConsumer<SqlStatement, String> onEmpty, String key, List<?> values) Bind a parameter for each value in the given list, and defines an attribute as the comma-separated list of parameter references (using colon prefix).