Uses of Class
io.vertx.rxjava3.sqlclient.RowSet
Packages that use RowSet
-
Uses of RowSet in io.vertx.rxjava3.sqlclient
Subclasses with type arguments of type RowSet in io.vertx.rxjava3.sqlclientModifier and TypeClassDescriptionclassRowSet<R>The execution result of the row set of a query provided as, commonly used as aRowSet.Fields in io.vertx.rxjava3.sqlclient with type parameters of type RowSetMethods in io.vertx.rxjava3.sqlclient that return 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) RowSet.next()RowSet.value()Methods in io.vertx.rxjava3.sqlclient that return types with arguments of type RowSetModifier and TypeMethodDescription<U> PreparedQuery<RowSet<U>> Pool.preparedQuery(String sql) A connection is borrowed from the connection pool when the query is executed and then immediately returned to the pool after it completes.SqlClient.preparedQuery(String sql) Create a prepared query, one of theQuery.execute()orPreparedQuery.executeBatch(List)methods must be called to execute the query.SqlClient.preparedQuery(String sql, PrepareOptions options) Create a prepared query, one of theQuery.execute()orPreparedQuery.executeBatch(List)methods must be called to execute the query.A connection is borrowed from the connection pool when the query is executed and then immediately returned to the pool after it completes.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.Cursor.rxRead(int count) Read rows from the cursor, the result is provided asynchronously to thehandler. -
Uses of RowSet in io.vertx.rxjava3.sqlclient.templates
Methods in io.vertx.rxjava3.sqlclient.templates that return types with arguments of type RowSetModifier and TypeMethodDescriptionCreate an SQL template for query purpose consuming map parameters and returning .<U> SqlTemplate<I, RowSet<U>> Set a row user defined mapping function.<U> SqlTemplate<I, RowSet<U>> Set a row user defined mapping function.