| 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 |
|---|---|
MySQLConnection |
MySQLConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler) |
| Modifier and Type | Method and Description |
|---|---|
PgConnection |
PgConnection.prepare(String sql,
Handler<AsyncResult<PreparedQuery>> handler) |
| Modifier and Type | Method and Description |
|---|---|
PreparedQuery |
PreparedQuery.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static PreparedQuery |
PreparedQuery.newInstance(PreparedQuery arg) |
| Constructor and Description |
|---|
PreparedQuery(PreparedQuery delegate) |
| Modifier and Type | Method and Description |
|---|---|
PreparedQuery |
PreparedQuery.getDelegate() |
| Modifier and Type | Method and Description |
|---|---|
static PreparedQuery |
PreparedQuery.newInstance(PreparedQuery arg) |
| Constructor and Description |
|---|
PreparedQuery(PreparedQuery delegate) |
| Modifier and Type | Method and Description |
|---|---|
<R> PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Execute a batch.
|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
Handler<AsyncResult<RowSet<Row>>> handler)
Execute a batch.
|
default <R> PreparedQuery |
PreparedQuery.execute(java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Calls
execute(Tuple, Collector, Handler) with an empty tuple argument. |
default PreparedQuery |
PreparedQuery.execute(Handler<AsyncResult<RowSet<Row>>> handler)
Calls
execute(Tuple, Handler) with an empty tuple argument. |
<R> PreparedQuery |
PreparedQuery.execute(Tuple args,
java.util.stream.Collector<Row,?,R> collector,
Handler<AsyncResult<SqlResult<R>>> handler)
Create a cursor with the provided
arguments. |
PreparedQuery |
PreparedQuery.execute(Tuple args,
Handler<AsyncResult<RowSet<Row>>> handler)
Create a cursor with the provided
arguments. |
| 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.