Uses of Interface
org.jdbi.v3.core.result.ResultIterator
Packages that use 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
Classes in org.jdbi.v3.core.result that implement ResultIteratorModifier and TypeClassDescriptionstatic classAn implementation ofResultIteratorthat delegates calls to the iterator provided in the constructor.Methods in org.jdbi.v3.core.result that return ResultIteratorModifier and TypeMethodDescriptionResultIterable.iterator()Stream all the rows of the result set out with anIterator.Methods in org.jdbi.v3.core.result with parameters of type ResultIteratorModifier and TypeMethodDescriptionstatic <T> ResultIterable<T> ResultIterable.of(ResultIterator<T> iterator) Returns a ResultIterable backed by the given iterator.voidIteratorConsumer.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
Methods in org.jdbi.v3.core.statement that return ResultIteratorModifier and TypeMethodDescriptionPreparedBatch.executeAndGetModCount()Execute the batch and return the mod counts as inexecute, but as a Jdbi result iterator instead of an array.