Uses of Interface
org.jdbi.v3.core.result.ResultBearing
Packages that use ResultBearing
Package
Description
The 'core' package hosts the top level interface into jdbi core.
result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.
The
statement
package provides most of the Fluent API
to drive statement execution.
The
oracle
package provides integration with the Oracle JDBC driver.-
Uses of ResultBearing in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return ResultBearingModifier and TypeMethodDescriptionHandle.queryMetadata
(MetaData.MetaDataResultSetProvider metadataFunction) Access database metadata that returns aResultSet
. -
Uses of ResultBearing in org.jdbi.v3.core.result
Classes in org.jdbi.v3.core.result that implement ResultBearingModifier and TypeClassDescriptionfinal class
Extends theResultBearing
class to provide access to the per-batch row modification counts.Methods in org.jdbi.v3.core.result that return ResultBearingModifier and TypeMethodDescriptionstatic ResultBearing
ResultProducers.createResultBearing
(Supplier<PreparedStatement> preparedStatementSupplier, ResultProducers.ResultSetCreator resultSetCreator, StatementContext ctx) Create aResultBearing
instance backed by aResultSet
.static ResultBearing
ResultBearing.of
(Supplier<ResultSet> resultSetSupplier, StatementContext ctx) Returns a ResultBearing backed by the given result set supplier and context.Methods in org.jdbi.v3.core.result that return types with arguments of type ResultBearingModifier and TypeMethodDescriptionstatic ResultProducer
<ResultBearing> ResultProducers.returningGeneratedKeys
(String... generatedKeyColumnNames) Result producer that returns aResultBearing
over the statement-generated keys.static ResultProducer
<ResultBearing> ResultProducers.returningResults()
Result producer that returns aResultBearing
over the statement result rows.Constructors in org.jdbi.v3.core.result with parameters of type ResultBearingModifierConstructorDescriptionBatchResultBearing
(ResultBearing delegate, Supplier<int[]> modifiedRowCountsSupplier) -
Uses of ResultBearing in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement ResultBearingModifier and TypeClassDescriptionfinal class
Access to Database Metadata.class
Represents a prepared batch statement.class
Statement providing convenience result handling for SQL queries.Methods in org.jdbi.v3.core.statement that return ResultBearingModifier and TypeMethodDescriptionPreparedBatch.executeAndReturnGeneratedKeys
(String... columnNames) Deprecated.Update.executeAndReturnGeneratedKeys
(String... generatedKeyColumnNames) Execute the statement and returns any auto-generated keys.OutParameters.getResultSet()
Returns aResultBearing
backed by the main result set returned by the procedure.OutParameters.getRowSet
(int pos) Retrieves aResultBearing
for an out parameter.Retrieves aResultBearing
for an out parameter. -
Uses of ResultBearing in org.jdbi.v3.oracle12
Methods in org.jdbi.v3.oracle12 that return types with arguments of type ResultBearingModifier and TypeMethodDescriptionstatic ResultProducer
<ResultBearing> OracleReturning.returningDml()
Result producer that returns aResultBearing
over the statement "DML returning" parameters.
PreparedBatch.executePreparedBatch(String...)
which has the same functionality but also returns the per-batch modified row counts.