Uses of Class
io.vertx.rxjava.sqlclient.SqlResult
-
Packages that use SqlResult Package Description io.vertx.rxjava.sqlclient -
-
Uses of SqlResult in io.vertx.rxjava.sqlclient
Subclasses of SqlResult in io.vertx.rxjava.sqlclient Modifier and Type Class Description class
RowSet<R>
The execution result of the row set of a query provided as
, commonly used as aRowSet
.Fields in io.vertx.rxjava.sqlclient with type parameters of type SqlResult Modifier and Type Field Description static TypeArg<SqlResult>
SqlResult. __TYPE_ARG
Methods in io.vertx.rxjava.sqlclient that return SqlResult Modifier and Type Method Description static <T> SqlResult<T>
SqlResult. newInstance(io.vertx.sqlclient.SqlResult arg)
static <T> SqlResult<T>
SqlResult. newInstance(io.vertx.sqlclient.SqlResult arg, TypeArg<T> __typeArg_T)
SqlResult<T>
SqlResult. next()
Return the next available result ornull
, e.g for a simple query that executed multiple queries or for a batch result.
-