Package | Description |
---|---|
io.vertx.sqlclient |
Modifier and Type | Method and Description |
---|---|
<R> PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Execute a batch.
|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Execute a batch.
|
default <R> PreparedQuery |
PreparedQuery.execute(Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Calls
execute(Tuple, Collector, Handler) with an empty tuple argument. |
default PreparedQuery |
PreparedQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Calls
execute(Tuple, Handler) with an empty tuple argument. |
<R> PreparedQuery |
PreparedQuery.execute(Tuple args,
Collector<Row,?,R> collector,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SqlResult<R>>> handler)
Create a cursor with the provided
arguments . |
PreparedQuery |
PreparedQuery.execute(Tuple args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet<Row>>> handler)
Create a cursor with the provided
arguments . |
Modifier and Type | Method and Description |
---|---|
SqlConnection |
SqlConnection.prepare(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<PreparedQuery>> handler)
Create a prepared query.
|
Transaction |
Transaction.prepare(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<PreparedQuery>> handler)
Create a prepared query.
|
Copyright © 2019 Eclipse. All rights reserved.