Uses of Class
io.vertx.mutiny.sqlclient.Row
-
Packages that use Row Package Description io.vertx.mutiny.jdbcclient io.vertx.mutiny.sqlclient io.vertx.mutiny.sqlclient.templates -
-
Uses of Row in io.vertx.mutiny.jdbcclient
Fields in io.vertx.mutiny.jdbcclient with type parameters of type Row Modifier and Type Field Description static PropertyKind<Row>
JDBCPool. GENERATED_KEYS
The property to be used to retrieve the generated keys -
Uses of Row in io.vertx.mutiny.sqlclient
Fields in io.vertx.mutiny.sqlclient with type parameters of type Row Modifier and Type Field Description static TypeArg<Row>
Row. __TYPE_ARG
Methods in io.vertx.mutiny.sqlclient that return Row Modifier and Type Method Description static Row
Row. newInstance(io.vertx.sqlclient.Row arg)
Methods in io.vertx.mutiny.sqlclient that return types with arguments of type Row Modifier and Type Method Description RowStream<Row>
PreparedStatement. createStream(int fetch)
RowStream<Row>
PreparedStatement. createStream(int fetch, Tuple args)
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
.RowSet<Row>
Cursor. readAndAwait(int count)
Blocking variant ofCursor.read(int)
.Method parameters in io.vertx.mutiny.sqlclient with type arguments of type Row 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)
-
Uses of Row in io.vertx.mutiny.sqlclient.templates
Methods in io.vertx.mutiny.sqlclient.templates that return types with arguments of type Row Modifier and Type Method Description static SqlTemplate<Map<String,Object>,RowSet<Row>>
SqlTemplate. forQuery(SqlClient client, String template)
Methods in io.vertx.mutiny.sqlclient.templates with parameters of type Row Modifier and Type Method Description T
RowMapper. map(Row row)
-