| Package | Description |
|---|---|
| io.vertx.rxjava.mysqlclient | |
| io.vertx.rxjava.pgclient | |
| io.vertx.rxjava.sqlclient |
| Modifier and Type | Method and Description |
|---|---|
Single<PreparedQuery> |
MySQLConnection.rxPrepare(String sql) |
| Modifier and Type | Method and Description |
|---|---|
MySQLConnection |
MySQLConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler) |
| Modifier and Type | Method and Description |
|---|---|
Single<PreparedQuery> |
PgConnection.rxPrepare(String sql) |
| Modifier and Type | Method and Description |
|---|---|
PgConnection |
PgConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler) |
| Modifier and Type | Field and Description |
|---|---|
static io.vertx.lang.rx.TypeArg<PreparedQuery> |
PreparedQuery.__TYPE_ARG |
| Modifier and Type | Method and Description |
|---|---|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
Handler<AsyncResult<RowSet<Row>>> handler)
Execute a batch.
|
PreparedQuery |
PreparedQuery.execute(Handler<AsyncResult<RowSet<Row>>> handler)
Calls
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,
Handler<AsyncResult<RowSet<Row>>> handler)
Create a cursor with the provided
arguments. |
static PreparedQuery |
PreparedQuery.newInstance(PreparedQuery arg) |
| Modifier and Type | Method and Description |
|---|---|
Single<PreparedQuery> |
SqlConnection.rxPrepare(String sql)
Create a prepared query.
|
Single<PreparedQuery> |
Transaction.rxPrepare(String sql)
Create a prepared query.
|
| Modifier and Type | Method and Description |
|---|---|
SqlConnection |
SqlConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler)
Create a prepared query.
|
Transaction |
Transaction.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler)
Create a prepared query.
|
Copyright © 2019 Eclipse. All rights reserved.