Uses of Class
io.vertx.rxjava.sqlclient.RowSet
-
Packages that use RowSet Package Description io.vertx.rxjava.sqlclient -
-
Uses of RowSet in io.vertx.rxjava.sqlclient
Fields in io.vertx.rxjava.sqlclient with type parameters of type RowSet Modifier and Type Field Description static TypeArg<RowSet>
RowSet. __TYPE_ARG
Methods in io.vertx.rxjava.sqlclient that return RowSet Modifier and Type Method Description static <R> RowSet<R>
RowSet. newInstance(RowSet arg)
static <R> RowSet<R>
RowSet. newInstance(RowSet arg, TypeArg<R> __typeArg_R)
RowSet<R>
RowSet. next()
RowSet<R>
RowSet. value()
Methods in io.vertx.rxjava.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)
A connection is borrowed from the connection pool when the query is executed and then immediately returned to the pool after it completes.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql)
Create a prepared query, one of theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
orPreparedQuery.executeBatch(java.util.List<io.vertx.rxjava.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
methods must be called to execute the query.PreparedQuery<RowSet<Row>>
SqlClient. preparedQuery(String sql, PrepareOptions options)
Create a prepared query, one of theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
orPreparedQuery.executeBatch(java.util.List<io.vertx.rxjava.sqlclient.Tuple>, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
methods must be called to execute the query.Query<RowSet<Row>>
Pool. query(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.PreparedQuery<RowSet<Row>>
PreparedStatement. query()
Create a prepared query for this statement.Query<RowSet<Row>>
SqlClient. query(String sql)
Create a query, theQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>)
method must be called to execute the query.rx.Single<RowSet<Row>>
Cursor. rxRead(int count)
Read rows from the cursor, the result is provided asynchronously to thehandler
.Method parameters in io.vertx.rxjava.sqlclient with type arguments of type RowSet Modifier and Type Method Description void
Cursor. read(int count, Handler<AsyncResult<RowSet<Row>>> handler)
Read rows from the cursor, the result is provided asynchronously to thehandler
.
-