result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results.See: Description
| Interface | Description |
|---|---|
| LinkedHashMapRowReducer<K,V> |
A row reducer that uses
LinkedHashMap (which preserves insertion order) as a
result container, and returns map.values().stream() as the final result. |
| ResultBearing |
Provides access to the contents of a
ResultSet by mapping to Java types. |
| ResultIterable<T> | |
| ResultIterator<T> |
Represents a forward-only iterator over a result set, which will lazily iterate
the results.
|
| ResultProducer<R> |
Produces a result from an executed
PreparedStatement. |
| ResultSetAccumulator<T> |
A
ResultSetAccumulator repeatedly combines rows
from the given ResultSet to produce a single
result. |
| ResultSetScanner<T> |
Scan over rows of result sets, mapping and collecting the rows to a result type.
|
| RowReducer<C,R> |
Reduces row data from a
ResultSet into a stream of result
elements. |
| StreamCallback<T,R,X extends Exception> |
Callback for use with
ResultIterable.withStream(StreamCallback) |
| StreamConsumer<T,X extends Exception> |
Callback for use with
ResultIterable.useStream(StreamConsumer) |
| Class | Description |
|---|---|
| ResultProducers |
Commonly used ResultProducer implementations.
|
| RowView |
A RowView is an accessor for
ResultSet that uses
RowMapper or ColumnMapper to extract values. |
| Exception | Description |
|---|---|
| NoResultsException |
Thrown when no results were found in a context that requires at least one.
|
| ResultSetException |
Wraps exceptions thrown while traversing the JDBC result set.
|
| UnableToProduceResultException |
Wraps exceptions thrown while producing Java result types.
|
result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results.
Copyright © 2019. All rights reserved.