Uses of Interface
org.jdbi.v3.core.result.ResultIterator
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.-
Uses of ResultIterator in org.jdbi.v3.core.result
Modifier and TypeClassDescriptionstatic class
An implementation ofResultIterator
that delegates calls to the iterator provided in the constructor.Modifier and TypeMethodDescriptionResultIterable.iterator()
Stream all the rows of the result set out with anIterator
.Modifier and TypeMethodDescriptionstatic <T> ResultIterable
<T> ResultIterable.of
(ResultIterator<T> iterator) Returns a ResultIterable backed by the given iterator.void
IteratorConsumer.useIterator
(ResultIterator<T> iterator) Will be invoked with result iterator.IteratorCallback.withIterator
(ResultIterator<T> iterator) Will be invoked with a Iterator<T>. -
Uses of ResultIterator in org.jdbi.v3.core.statement
Modifier and TypeMethodDescriptionPreparedBatch.executeAndGetModCount()
Execute the batch and return the mod counts as inexecute
, but as a Jdbi result iterator instead of an array.