Uses of Class
io.vertx.mutiny.sqlclient.RowSet
Packages that use RowSet
-
Uses of RowSet in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type RowSetMethods in io.vertx.mutiny.sqlclient that return RowSetModifier and TypeMethodDescriptionstatic <R> RowSet<R>RowSet.newInstance(io.vertx.sqlclient.RowSet<R> delegate) Creates a new instance of theRowSet.static <R> RowSet<R>RowSet.newInstance(io.vertx.sqlclient.RowSet<R> delegate, TypeArg<R> typeArg_0) Creates a new instance of theRowSet.RowSet.next()Cursor.readAndAwait(int count) Read rows from the cursor, the result is provided asynchronously to thehandler.RowSet.value()Methods in io.vertx.mutiny.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(io.vertx.mutiny.sqlclient.Tuple)orPreparedQuery.executeBatch(java.util.List<io.vertx.mutiny.sqlclient.Tuple>)methods must be called to execute the query.SqlClient.preparedQuery(String sql) Create a prepared query, one of thePreparedQuery.execute(io.vertx.mutiny.sqlclient.Tuple)orPreparedQuery.executeBatch(java.util.List<io.vertx.mutiny.sqlclient.Tuple>)methods must be called to execute the query.SqlClient.preparedQuery(String sql, io.vertx.sqlclient.PrepareOptions options) Create a prepared query, one of thePreparedQuery.execute(io.vertx.mutiny.sqlclient.Tuple)orPreparedQuery.executeBatch(java.util.List<io.vertx.mutiny.sqlclient.Tuple>)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.mutiny.sqlclient.templates
Methods in io.vertx.mutiny.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.