<U> PreparedQuery<RowSet<U>> |
PreparedQuery.mapping(Function<Row,U> mapper) |
Use the specified mapper for mapping Row to
.
|
<U> Query<RowSet<U>> |
Query.mapping(Function<Row,U> mapper) |
Use the specified mapper for mapping Row to
.
|
PreparedQuery<RowSet<Row>> |
Pool.preparedQuery(String sql) |
A connection is borrowed from the connection pool when the query is executed and then immediately returned
to the pool after it completes.
|
PreparedQuery<RowSet<Row>> |
SqlClient.preparedQuery(String sql) |
|
PreparedQuery<RowSet<Row>> |
SqlClient.preparedQuery(String sql,
PrepareOptions options) |
|
Query<RowSet<Row>> |
Pool.query(String sql) |
A connection is borrowed from the connection pool when the query is executed and then immediately returned
to the pool after it completes.
|
PreparedQuery<RowSet<Row>> |
PreparedStatement.query() |
Create a prepared query for this statement.
|
Query<RowSet<Row>> |
SqlClient.query(String sql) |
Create a query, the Query.execute() method must be called to execute the query.
|
Future<RowSet<Row>> |
Cursor.read(int count) |
Read rows from the cursor, the result is provided asynchronously to the handler .
|
rx.Single<RowSet<Row>> |
Cursor.rxRead(int count) |
Read rows from the cursor, the result is provided asynchronously to the handler .
|