Uses of Package
org.jdbi.v3.core.result
Package
Description
The 'core' package hosts the top level interface into jdbi core.
mapper
s take the JDBC ResultSet and produce Java results.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.-
-
ClassDescriptionA RowView is an accessor for
ResultSet
that usesRowMapper
orColumnMapper
to extract values. -
ClassDescriptionExtend the
ResultIterable
for batch operations.Callback for use withResultIterable.withIterator(IteratorCallback)
Callback for use withResultIterable.useIterator(IteratorConsumer)
Provides access to the contents of aResultSet
by mapping to Java types.Represents a forward-only iterator over a result set, which will lazily iterate the results.Produces a result from an executedPreparedStatement
.Commonly used ResultProducer implementations.Returns a ResultSet from a Statement.AResultSetAccumulator
repeatedly combines rows from the givenResultSet
to produce a single result.Scan over rows of result sets, mapping and collecting the rows to a result type.Reduces row data from aResultSet
into a stream of result elements.A RowView is an accessor forResultSet
that usesRowMapper
orColumnMapper
to extract values.Callback for use withResultIterable.withStream(StreamCallback)
Callback for use withResultIterable.useStream(StreamConsumer)
-
ClassDescriptionExtends the
ResultBearing
class to provide access to the per-batch row modification counts.Provides access to the contents of aResultSet
by mapping to Java types.Represents a forward-only iterator over a result set, which will lazily iterate the results.Produces a result from an executedPreparedStatement
.Scan over rows of result sets, mapping and collecting the rows to a result type.