Uses of Interface
org.jdbi.v3.core.result.ResultProducer
Packages that use ResultProducer
Package
Description
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 ResultProducer in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result that return ResultProducerModifier 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.static ResultProducer
<Integer> ResultProducers.returningUpdateCount()
Result producer that eagerly executes the statement, returning the update count -
Uses of ResultProducer in org.jdbi.v3.core.statement
Methods in org.jdbi.v3.core.statement with parameters of type ResultProducerModifier and TypeMethodDescription<R> R
PreparedBatch.execute
(ResultProducer<R> producer) Executes the batch, returning the result obtained from the givenResultProducer
.<R> R
Query.execute
(ResultProducer<R> producer) Executes the query, returning the result obtained from the givenResultProducer
.<R> R
Update.execute
(ResultProducer<R> producer) Executes the update, returning the result obtained from the givenResultProducer
. -
Uses of ResultProducer in org.jdbi.v3.oracle12
Methods in org.jdbi.v3.oracle12 that return ResultProducerModifier and TypeMethodDescriptionstatic ResultProducer
<ResultBearing> OracleReturning.returningDml()
Result producer that returns aResultBearing
over the statement "DML returning" parameters.