Uses of Interface
io.vertx.sqlclient.RowSet
-
Packages that use RowSet Package Description io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient io.vertx.sqlclient.templates -
-
Uses of RowSet in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return RowSet Modifier and Type Method Description RowSet
RowSet. getDelegate()
Methods in io.vertx.reactivex.sqlclient with parameters of type RowSet Modifier and Type Method Description static <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 Constructor Description RowSet(RowSet delegate)
-
Uses of RowSet in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return RowSet Modifier and Type Method Description RowSet
RowSet. getDelegate()
Methods in io.vertx.rxjava3.sqlclient with parameters of type RowSet Modifier and Type Method Description static <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 Constructor Description RowSet(RowSet delegate)
-
Uses of RowSet in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return RowSet Modifier and Type Method Description RowSet<R>
RowSet. next()
Methods in io.vertx.sqlclient that return types with arguments of type RowSet Modifier and Type Method Description <U> PreparedQuery<RowSet<U>>
PreparedQuery. mapping(java.util.function.Function<Row,U> mapper)
<U> Query<RowSet<U>>
Query. mapping(java.util.function.Function<Row,U> mapper)
PreparedQuery<RowSet<Row>>
Pool. preparedQuery(String sql)
Create a prepared query, one of thePreparedQuery.execute(io.vertx.sqlclient.Tuple)
orPreparedQuery.executeBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql)
Create a prepared query, one of thePreparedQuery.execute(io.vertx.sqlclient.Tuple)
orPreparedQuery.executeBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql, PrepareOptions options)
Create a prepared query, one of thePreparedQuery.execute(io.vertx.sqlclient.Tuple)
orPreparedQuery.executeBatch(java.util.List<io.vertx.sqlclient.Tuple>)
methods must be called to execute the query.Query<RowSet<Row>>
Pool. query(String sql)
Create a query, theQuery.execute()
method must be called to execute the query.PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Create a prepared query for this statement.Query<RowSet<Row>>
SqlClient. query(String sql)
Create a query, theQuery.execute()
method must be called to execute the query.Future<RowSet<Row>>
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 RowSet Modifier and Type Method Description static SqlTemplate<Map<String,Object>,RowSet<Row>>
SqlTemplate. forQuery(SqlClient client, String template)
Create an SQL template for query purpose consuming map parameters and returningRow
.<U> SqlTemplate<I,RowSet<U>>
SqlTemplate. mapTo(RowMapper<U> mapper)
Set a row user defined mapping function.<U> SqlTemplate<I,RowSet<U>>
SqlTemplate. mapTo(Class<U> type)
Set a row user defined mapping function.
-