<T> Stream<T> |
QueryStatement.query(@NonNull SQLContext context,
@NonNull ResultSetMapper<? extends T> resultSetMapper) |
|
<T> Stream<T> |
QueryStatement.query(@NonNull SQLContext context,
@NonNull List<?> values,
@NonNull ResultSetMapper<? extends T> resultSetMapper) |
Performs the query specified in this statement using the given SQLContext filling in indexed value
placeholders using the given List of values and returning the results as a ResultSetIterator * using the
given ResultSetMapper to map ResultSet to objects
|
<T> Stream<T> |
QueryStatement.query(@NonNull SQLContext context,
@NonNull Map<String,?> values,
@NonNull ResultSetMapper<? extends T> resultSetMapper) |
Performs the query specified in this statement using the given SQLContext filling in named value
placeholders using the given Map of values and returning the results as a ResultSetIterator using the
given ResultSetMapper to map ResultSet to objects
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn) |
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn,
int numPartitions) |
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull List<?> values,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn,
int numPartitions) |
Performs this Select query using the given SQLContext filling in indexed value placeholders using the
given Map of values and returning the results as a ResultSetIterator using the given ResultSetMapper * to map ResultSet to objects.
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull List<Object> values,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn) |
Performs this Select query using the given SQLContext filling in indexed value placeholders using the
given Map of values and returning the results as a ResultSetIterator using the given ResultSetMapper to map ResultSet to objects.
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull Map<String,?> values,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn) |
Performs this Select query using the given SQLContext filling in named value placeholders using the given
Map of values and returning the results as a ResultSetIterator using the given ResultSetMapper * to
map ResultSet to objects.
|
<T> Stream<T> |
Select.queryParallel(@NonNull SQLContext context,
@NonNull Map<String,?> values,
@NonNull ResultSetMapper<? extends T> mapper,
@NonNull String partitionColumn,
int numPartitions) |
Performs this Select query using the given SQLContext filling in named value placeholders using the given
Map of values and returning the results as a ResultSetIterator using the given ResultSetMapper to
map ResultSet to objects.
|