Uses of Class
io.vertx.mutiny.sqlclient.RowSet
-
Packages that use RowSet Package Description io.vertx.mutiny.sqlclient io.vertx.mutiny.sqlclient.templates -
-
Uses of RowSet in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type RowSet Modifier and Type Field Description static TypeArg<RowSet>
RowSet. __TYPE_ARG
Methods in io.vertx.mutiny.sqlclient that return RowSet Modifier and Type Method Description static <R> RowSet<R>
RowSet. newInstance(io.vertx.sqlclient.RowSet arg)
static <R> RowSet<R>
RowSet. newInstance(io.vertx.sqlclient.RowSet arg, TypeArg<R> __typeArg_R)
RowSet<R>
RowSet. next()
RowSet<Row>
Cursor. readAndAwait(int count)
Blocking variant ofCursor.read(int)
.RowSet<R>
RowSet. value()
Methods in io.vertx.mutiny.sqlclient that return types with arguments of type RowSet Modifier and Type Method Description <U> PreparedQuery<RowSet<U>>
PreparedQuery. mapping(Function<Row,U> mapper)
<U> Query<RowSet<U>>
Query. mapping(Function<Row,U> mapper)
PreparedQuery<RowSet<Row>>
Pool. preparedQuery(String sql)
PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql)
Query<RowSet<Row>>
Pool. query(String sql)
PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Query<RowSet<Row>>
SqlClient. query(String sql)
io.smallrye.mutiny.Uni<RowSet<Row>>
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 RowSet Modifier and Type Method Description static SqlTemplate<Map<String,Object>,RowSet<Row>>
SqlTemplate. forQuery(SqlClient client, String template)
<U> SqlTemplate<I,RowSet<U>>
SqlTemplate. mapTo(RowMapper<U> mapper)
<U> SqlTemplate<I,RowSet<U>>
SqlTemplate. mapTo(Class<U> type)
-