Package | Description |
---|---|
io.vertx.sqlclient |
Modifier and Type | Method and Description |
---|---|
RowSet |
RowSet.next() |
Modifier and Type | Method and Description |
---|---|
PreparedQuery |
PreparedQuery.batch(List<Tuple> argsList,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Execute a batch.
|
default PreparedQuery |
PreparedQuery.execute(io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Calls
PreparedQuery.execute(Tuple, Handler) with an empty tuple argument. |
PreparedQuery |
PreparedQuery.execute(Tuple args,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Create a cursor with the provided
arguments . |
Pool |
Pool.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
SqlClient |
SqlClient.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Prepare and execute a createBatch.
|
SqlConnection |
SqlConnection.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Transaction |
Transaction.preparedBatch(String sql,
List<Tuple> batch,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Pool |
Pool.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Prepare and execute a query.
|
SqlConnection |
SqlConnection.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Pool |
Pool.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
SqlClient |
SqlClient.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Prepare and execute a query.
|
SqlConnection |
SqlConnection.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Transaction |
Transaction.preparedQuery(String sql,
Tuple arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Pool |
Pool.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
SqlClient |
SqlClient.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Execute a simple query.
|
SqlConnection |
SqlConnection.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
Transaction |
Transaction.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler) |
void |
Cursor.read(int count,
io.vertx.core.Handler<io.vertx.core.AsyncResult<RowSet>> handler)
Read rows from the cursor, the result is provided asynchronously to the
handler . |
Copyright © 2019 Eclipse. All rights reserved.