Uses of Interface
io.vertx.sqlclient.SqlResult
Packages that use SqlResult
Package
Description
-
Uses of SqlResult in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return SqlResultMethods in io.vertx.reactivex.sqlclient with parameters of type SqlResultModifier and TypeMethodDescriptionstatic <T> SqlResult<T> SqlResult.newInstance(SqlResult arg) static <T> SqlResult<T> SqlResult.newInstance(SqlResult arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) Constructors in io.vertx.reactivex.sqlclient with parameters of type SqlResult -
Uses of SqlResult in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return SqlResultMethods in io.vertx.rxjava3.sqlclient with parameters of type SqlResultModifier and TypeMethodDescriptionstatic <T> SqlResult<T> SqlResult.newInstance(SqlResult arg) static <T> SqlResult<T> SqlResult.newInstance(SqlResult arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) Constructors in io.vertx.rxjava3.sqlclient with parameters of type SqlResult -
Uses of SqlResult in io.vertx.sqlclient
Subinterfaces of SqlResult in io.vertx.sqlclientModifier and TypeInterfaceDescriptioninterfaceRowSet<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 SqlResultModifier and TypeMethodDescriptionSqlResult.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 SqlResultModifier and TypeMethodDescription<R> PreparedQuery<SqlResult<R>> PreparedQuery.collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>.Query.collecting(Collector<Row, ?, R> collector) Use the specifiedcollectorfor collecting the query result to<R>. -
Uses of SqlResult in io.vertx.sqlclient.templates
Methods in io.vertx.sqlclient.templates that return types with arguments of type SqlResultModifier and TypeMethodDescription<U> SqlTemplate<I, SqlResult<U>> SqlTemplate.collecting(Collector<Row, ?, U> collector) Set a collector that will process the output and produce a custom result.Create an SQL template for query purpose consuming map parameters and returning void.