result provides the streaming interface that reads rows from JDBC
and drives the mapper and collector processes to
produce results.See: Description
| Interface | Description |
|---|---|
| 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. |
| ResultSetMapper<T> |
Maps result sets to objects.
|
| 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 © 2017. All rights reserved.