<R> PreparedQuery<SqlResult<R>> |
PreparedQuery.collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specified collector for collecting the query result to <R> .
|
<U> PreparedQuery<RowSet<U>> |
PreparedQuery.mapping(java.util.function.Function<Row,U> mapper)
Use the specified mapper for mapping Row to <U> .
|
PreparedQuery<RowSet<Row>> |
Pool.preparedQuery(String sql)
|
PreparedQuery<RowSet<Row>> |
SqlClient.preparedQuery(String sql)
|
PreparedQuery<RowSet<Row>> |
PreparedStatement.query()
Create a prepared query for this statement.
|