Uses of Class
org.jdbi.v3.core.statement.SqlStatement
-
Packages that use SqlStatement Package Description org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution.org.jdbi.v3.sqlobject.customizer Thesqlobject.customizerpackage provides annotations that customize the execution of a statement.org.jdbi.v3.sqlobject.statement.internal -
-
Uses of SqlStatement in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement with type parameters of type SqlStatement Modifier and Type Class Description classSqlStatement<This extends SqlStatement<This>>This class provides the common functions betweenQueryandUpdate.Subclasses of SqlStatement in org.jdbi.v3.core.statement Modifier and Type Class Description classCallUsed for invoking stored procedures.classPreparedBatchRepresents a prepared batch statement.classQueryStatement providing convenience result handling for SQL queries.classScriptRepresents a number of SQL statements delimited by semicolon which will be executed in order in a batch statement.classUpdateUsed for INSERT, UPDATE, and DELETE statementsMethod parameters in org.jdbi.v3.core.statement with type arguments of type SqlStatement Modifier and Type Method Description ThisSqlStatement. bindList(java.util.function.BiConsumer<SqlStatement,java.lang.String> onEmpty, java.lang.String key, java.lang.Iterable<?> values)ThisSqlStatement. bindList(java.util.function.BiConsumer<SqlStatement,java.lang.String> onEmpty, java.lang.String key, java.lang.Object... values)ThisSqlStatement. bindList(java.util.function.BiConsumer<SqlStatement,java.lang.String> onEmpty, java.lang.String key, java.util.Iterator<?> values)ThisSqlStatement. bindList(java.util.function.BiConsumer<SqlStatement,java.lang.String> onEmpty, java.lang.String key, java.util.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). -
Uses of SqlStatement in org.jdbi.v3.sqlobject.customizer
Methods in org.jdbi.v3.sqlobject.customizer with parameters of type SqlStatement Modifier and Type Method Description voidSqlStatementCustomizer. apply(SqlStatement<?> q)Invoked to customize the sql statementvoidSqlStatementParameterCustomizer. apply(SqlStatement<?> stmt, java.lang.Object arg)Applies the customization to the SQL statement using the argument passed to the method.voidBindList.EmptyHandling. define(SqlStatement stmt, java.lang.String name)Deprecated.legacy internal API -
Uses of SqlStatement in org.jdbi.v3.sqlobject.statement.internal
Classes in org.jdbi.v3.sqlobject.statement.internal with type parameters of type SqlStatement Modifier and Type Class Description (package private) classCustomizingStatementHandler<StatementType extends SqlStatement<StatementType>>Base handler for annotations' implementation classes.Methods in org.jdbi.v3.sqlobject.statement.internal with parameters of type SqlStatement Modifier and Type Method Description voidCustomizingStatementHandler.BoundCustomizer. apply(SqlStatement<?> stmt, java.lang.Object[] args)
-