Package | Description |
---|---|
io.vertx.reactivex.sqlclient | |
io.vertx.rxjava.sqlclient | |
io.vertx.sqlclient | |
io.vertx.sqlclient.templates |
Modifier and Type | Method and Description |
---|---|
SqlResult |
SqlResult.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static <T> SqlResult<T> |
SqlResult.newInstance(SqlResult arg) |
static <T> SqlResult<T> |
SqlResult.newInstance(SqlResult arg,
io.vertx.lang.rx.TypeArg<T> __typeArg_T) |
Constructor and Description |
---|
SqlResult(SqlResult delegate) |
Modifier and Type | Method and Description |
---|---|
SqlResult |
SqlResult.getDelegate() |
Modifier and Type | Method and Description |
---|---|
static <T> SqlResult<T> |
SqlResult.newInstance(SqlResult arg) |
static <T> SqlResult<T> |
SqlResult.newInstance(SqlResult arg,
io.vertx.lang.rx.TypeArg<T> __typeArg_T) |
Constructor and Description |
---|
SqlResult(SqlResult delegate) |
Modifier and Type | Interface and Description |
---|---|
interface |
RowSet<R>
The execution result of the row set of a query provided as
<R> , commonly used as a RowSet<Row> . |
Modifier and Type | Method and Description |
---|---|
SqlResult<T> |
SqlResult.next()
Return the next available result or
null , e.g for a simple query that executed multiple queries or for
a batch result. |
Modifier and Type | Method and Description |
---|---|
<R> PreparedQuery<SqlResult<R>> |
PreparedQuery.collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specified
collector for collecting the query result to <R> . |
<R> Query<SqlResult<R>> |
Query.collecting(java.util.stream.Collector<Row,?,R> collector)
Use the specified
collector for collecting the query result to <R> . |
Modifier and Type | Method and Description |
---|---|
<U> SqlTemplate<I,SqlResult<U>> |
SqlTemplate.collecting(java.util.stream.Collector<Row,?,U> collector)
Set a collector that will process the output and produce a custom result.
|
static SqlTemplate<Map<String,Object>,SqlResult<Void>> |
SqlTemplate.forUpdate(SqlClient client,
String template)
Create an SQL template for query purpose consuming map parameters and returning void.
|
Copyright © 2021 Eclipse. All rights reserved.