Package | Description |
---|---|
com.github.davidmoten.rx.jdbc |
Database querying utilities for use with JDBC and RxJava.
|
com.github.davidmoten.rx.jdbc.tuple |
Tuples used to map ResultSet rows into strongly typed values.
|
Modifier and Type | Method and Description |
---|---|
<T1,T2> rx.Observable<Tuple2<T1,T2>> |
QuerySelect.Builder.getAs(Class<T1> cls1,
Class<T2> cls2)
Automaps the columns of the
ResultSet into the specified
classes. |
<T1,T2> rx.Observable.Operator<Tuple2<T1,T2>,R> |
QuerySelect.OperatorBuilder.getAs(Class<T1> cls1,
Class<T2> cls2)
Automaps the columns of the
ResultSet into the specified
classes. |
<T1,T2> rx.Observable<Tuple2<T1,T2>> |
QueryUpdate.ReturnGeneratedKeysBuilder.getAs(Class<T1> cls1,
Class<T2> cls2)
Automaps the columns of the
ResultSet into the specified
classes. |
Modifier and Type | Method and Description |
---|---|
static <R,S> Tuple2<R,S> |
Tuple2.create(R r,
S s)
Returns a new instance.
|
Modifier and Type | Method and Description |
---|---|
static <T1,T2> ResultSetMapper<Tuple2<T1,T2>> |
Tuples.tuple(Class<T1> cls1,
Class<T2> cls2) |
Copyright © 2014–2015. All rights reserved.