Package | Description |
---|---|
io.vertx.rxjava.mysqlclient | |
io.vertx.rxjava.pgclient | |
io.vertx.rxjava.sqlclient |
Modifier and Type | Method and Description |
---|---|
rx.Single<RowSet<Row>> |
MySQLPool.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
MySQLPool.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
MySQLConnection.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
MySQLPool.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
MySQLConnection.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
MySQLPool.rxQuery(String sql) |
rx.Single<RowSet<Row>> |
MySQLConnection.rxQuery(String sql) |
Modifier and Type | Method and Description |
---|---|
MySQLPool |
MySQLPool.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
Modifier and Type | Method and Description |
---|---|
rx.Single<RowSet<Row>> |
PgPool.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
PgConnection.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
PgPool.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
PgConnection.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
PgPool.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
PgConnection.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
PgPool.rxQuery(String sql) |
rx.Single<RowSet<Row>> |
PgConnection.rxQuery(String sql) |
Modifier and Type | Method and Description |
---|---|
PgPool |
PgPool.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
Modifier and Type | Field and Description |
---|---|
static TypeArg<RowSet> |
RowSet.__TYPE_ARG |
Modifier and Type | Method and 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()
Get the result value.
|
Modifier and Type | Method and Description |
---|---|
rx.Single<RowSet<Row>> |
PreparedQuery.rxBatch(List<Tuple> argsList)
Execute a batch.
|
rx.Single<RowSet<Row>> |
PreparedQuery.rxExecute()
Calls
PreparedQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.sqlclient.RowSet<io.vertx.rxjava.sqlclient.Row>>>) with an empty tuple argument. |
rx.Single<RowSet<Row>> |
PreparedQuery.rxExecute(Tuple args)
Create a cursor with the provided
arguments . |
rx.Single<RowSet<Row>> |
Transaction.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
SqlClient.rxPreparedBatch(String sql,
List<Tuple> batch)
Prepare and execute a createBatch.
|
rx.Single<RowSet<Row>> |
Pool.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
SqlConnection.rxPreparedBatch(String sql,
List<Tuple> batch) |
rx.Single<RowSet<Row>> |
Transaction.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
SqlClient.rxPreparedQuery(String sql)
Prepare and execute a query.
|
rx.Single<RowSet<Row>> |
Pool.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
SqlConnection.rxPreparedQuery(String sql) |
rx.Single<RowSet<Row>> |
Transaction.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
SqlClient.rxPreparedQuery(String sql,
Tuple arguments)
Prepare and execute a query.
|
rx.Single<RowSet<Row>> |
Pool.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
SqlConnection.rxPreparedQuery(String sql,
Tuple arguments) |
rx.Single<RowSet<Row>> |
Transaction.rxQuery(String sql) |
rx.Single<RowSet<Row>> |
SqlClient.rxQuery(String sql)
Execute a simple query.
|
rx.Single<RowSet<Row>> |
Pool.rxQuery(String sql) |
rx.Single<RowSet<Row>> |
SqlConnection.rxQuery(String sql) |
rx.Single<RowSet<Row>> |
Cursor.rxRead(int count)
Read rows from the cursor, the result is provided asynchronously to the
handler . |
Modifier and Type | Method and Description |
---|---|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Execute a batch.
|
PreparedQuery |
PreparedQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Calls
PreparedQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.sqlclient.RowSet<io.vertx.rxjava.sqlclient.Row>>>) with an empty tuple argument. |
PreparedQuery |
PreparedQuery.execute(Tuple args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Create a cursor with the provided
arguments . |
Transaction |
Transaction.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a createBatch.
|
Pool |
Pool.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
Pool |
Pool.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
Pool |
Pool.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
Transaction |
Transaction.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Execute a simple query.
|
Pool |
Pool.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler) |
void |
Cursor.read(int count,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Read rows from the cursor, the result is provided asynchronously to the
handler . |
Copyright © 2019 Eclipse. All rights reserved.