Uses of Interface
org.jdbi.v3.core.result.ResultProducer
-
Packages that use ResultProducer Package Description org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution. -
-
Uses of ResultProducer in org.jdbi.v3.core.result
Methods in org.jdbi.v3.core.result that return ResultProducer Modifier and Type Method Description static ResultProducer<ResultBearing>ResultProducers. returningGeneratedKeys(java.lang.String... generatedKeyColumnNames)Result producer that returns aResultBearingover the statement-generated keys.static ResultProducer<ResultBearing>ResultProducers. returningResults()Result producer that returns aResultBearingover the statement result rows.static ResultProducer<java.lang.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 ResultProducer Modifier and Type Method Description <R> RPreparedBatch. execute(ResultProducer<R> producer)Executes the batch, returning the result obtained from the givenResultProducer.private <R> RPreparedBatch. execute(ResultProducer<R> producer, java.util.function.Consumer<PreparedBatch.ExecutedBatch> batchConsumer)<R> RQuery. execute(ResultProducer<R> producer)Executes the query, returning the result obtained from the givenResultProducer.<R> RUpdate. execute(ResultProducer<R> producer)Executes the update, returning the result obtained from the givenResultProducer.
-