Uses of Interface
io.vertx.sqlclient.RowSet
Packages that use RowSet
Package
Description
-
Uses of RowSet in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return RowSetMethods in io.vertx.reactivex.sqlclient with parameters of type RowSetModifier and TypeMethodDescriptionstatic <R> RowSet<R> RowSet.newInstance(RowSet arg) static <R> RowSet<R> RowSet.newInstance(RowSet arg, io.vertx.lang.rx.TypeArg<R> __typeArg_R) Constructors in io.vertx.reactivex.sqlclient with parameters of type RowSet -
Uses of RowSet in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return RowSetMethods in io.vertx.rxjava3.sqlclient with parameters of type RowSetModifier and TypeMethodDescriptionstatic <R> RowSet<R> RowSet.newInstance(RowSet arg) static <R> RowSet<R> RowSet.newInstance(RowSet arg, io.vertx.lang.rx.TypeArg<R> __typeArg_R) Constructors in io.vertx.rxjava3.sqlclient with parameters of type RowSet -
Uses of RowSet in io.vertx.sqlclient
Subinterfaces with type arguments of type RowSet 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 RowSetMethods in io.vertx.sqlclient that return types with arguments of type RowSetModifier and TypeMethodDescription<U> PreparedQuery<RowSet<U>> Pool.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql, PrepareOptions options) Create a prepared query, one of thePreparedQuery.execute(Tuple)orPreparedQuery.executeBatch(List)methods must be called to execute the query.Create a query, theQuery.execute()method must be called to execute the query.PreparedStatement.query()Create a prepared query for this statement.Create a query, theQuery.execute()method must be called to execute the query.Cursor.read(int count) Read rows from the cursor, the result is provided asynchronously to thehandler. -
Uses of RowSet in io.vertx.sqlclient.templates
Methods in io.vertx.sqlclient.templates that return types with arguments of type RowSetModifier and TypeMethodDescriptionCreate an SQL template for query purpose consuming map parameters and returningRow.<U> SqlTemplate<I, RowSet<U>> Set a row user defined mapping function.<U> SqlTemplate<I, RowSet<U>> Set a row user defined mapping function.