Uses of Interface
io.vertx.sqlclient.SqlResult
-
Packages that use SqlResult Package Description io.vertx.sqlclient -
-
Uses of SqlResult in io.vertx.sqlclient
Subinterfaces of SqlResult in io.vertx.sqlclient Modifier and Type Interface Description interfaceRowSet<R>The execution result of the row set of a query provided as<R>, commonly used as aRowSet<Row>.Methods in io.vertx.sqlclient that return SqlResult Modifier and Type Method Description 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.Methods in io.vertx.sqlclient that return types with arguments of type SqlResult Modifier and Type Method Description <R> PreparedQuery<SqlResult<R>>PreparedQuery. collecting(Collector<Row,?,R> collector)Use the specifiedcollectorfor collecting the query result to<R>.<R> Query<SqlResult<R>>Query. collecting(Collector<Row,?,R> collector)Use the specifiedcollectorfor collecting the query result to<R>.
-