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,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.query(String sql,
Handler<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,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
Modifier and Type | Field and Description |
---|---|
static TypeArg<Row> |
Row.__TYPE_ARG |
Modifier and Type | Method and Description |
---|---|
static Row |
Row.newInstance(Row arg) |
Modifier and Type | Method and Description |
---|---|
RowStream<Row> |
PreparedQuery.createStream(int fetch,
Tuple args)
Execute the prepared query with a cursor and createStream the result.
|
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 . |
Copyright © 2019 Eclipse. All rights reserved.