| Package | Description |
|---|---|
| io.vertx.mysqlclient | |
| io.vertx.pgclient | |
| io.vertx.reactivex.sqlclient | |
| io.vertx.rxjava.sqlclient | |
| io.vertx.sqlclient |
| Modifier and Type | Method and Description |
|---|---|
MySQLPool |
MySQLPool.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLConnection |
MySQLConnection.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
MySQLPool |
MySQLPool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
| Modifier and Type | Method and Description |
|---|---|
PgConnection |
PgConnection.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgConnection |
PgConnection.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
PgPool |
PgPool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
| Modifier and Type | Method and Description |
|---|---|
RowSet |
RowSet.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static <R> RowSet<R> |
RowSet.newInstance(RowSet arg) |
static <R> RowSet<R> |
RowSet.newInstance(RowSet arg,
io.vertx.lang.rx.TypeArg<R> __typeArg_R) |
| Constructor and Description |
|---|
RowSet(RowSet delegate) |
RowSet(RowSet delegate,
io.vertx.lang.rx.TypeArg<R> typeArg_0) |
| Modifier and Type | Method and Description |
|---|---|
RowSet |
RowSet.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static <R> RowSet<R> |
RowSet.newInstance(RowSet arg) |
static <R> RowSet<R> |
RowSet.newInstance(RowSet arg,
io.vertx.lang.rx.TypeArg<R> __typeArg_R) |
| Constructor and Description |
|---|
RowSet(RowSet delegate) |
RowSet(RowSet delegate,
io.vertx.lang.rx.TypeArg<R> typeArg_0) |
| Modifier and Type | Method and Description |
|---|---|
RowSet<R> |
RowSet.next() |
| Modifier and Type | Method and Description |
|---|---|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
Handler<AsyncResult<RowSet<Row>>> handler)
Execute a batch.
|
default PreparedQuery |
PreparedQuery.execute(Handler<AsyncResult<RowSet<Row>>> handler)
Calls
PreparedQuery.execute(Tuple, Handler) with an empty tuple argument. |
PreparedQuery |
PreparedQuery.execute(Tuple args,
Handler<AsyncResult<RowSet<Row>>> handler)
Create a cursor with the provided
arguments. |
SqlConnection |
SqlConnection.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
Pool |
Pool.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a createBatch.
|
Transaction |
Transaction.preparedBatch(String sql,
List<Tuple> batch,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
Pool |
Pool.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
Transaction |
Transaction.preparedQuery(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
Pool |
Pool.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler)
Prepare and execute a query.
|
Transaction |
Transaction.preparedQuery(String sql,
Tuple arguments,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlConnection |
SqlConnection.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
Pool |
Pool.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
SqlClient |
SqlClient.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler)
Execute a simple query.
|
Transaction |
Transaction.query(String sql,
Handler<AsyncResult<RowSet<Row>>> handler) |
void |
Cursor.read(int count,
Handler<AsyncResult<RowSet<Row>>> handler)
Read rows from the cursor, the result is provided asynchronously to the
handler. |
Copyright © 2019 Eclipse. All rights reserved.