SQLOperations |
SQLOperations.call(String sql) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLOperations |
SQLOperations.call(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> resultHandler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLOperations |
SQLOperations.callWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.json.JsonArray outputs) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLOperations |
SQLOperations.callWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.json.JsonArray outputs,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> resultHandler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
static SQLOperations |
SQLOperations.newInstance(io.vertx.ext.sql.SQLOperations arg) |
|
SQLOperations |
SQLOperations.query(String sql) |
Executes the given SQL SELECT statement which returns the results of the query.
|
SQLOperations |
SQLOperations.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> resultHandler) |
Executes the given SQL SELECT statement which returns the results of the query.
|
SQLOperations |
SQLClient.querySingle(String sql) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLClient.querySingle(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLConnection.querySingle(String sql) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLConnection.querySingle(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLOperations.querySingle(String sql) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLOperations.querySingle(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement that returns a single SQL row.
|
SQLOperations |
SQLClient.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLClient.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLConnection.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLConnection.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLOperations.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLOperations.querySingleWithParams(String sql,
io.vertx.core.json.JsonArray arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler) |
Execute a one shot SQL statement with arguments that returns a single SQL row.
|
SQLOperations |
SQLOperations.queryStream(String sql) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLOperations |
SQLOperations.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLOperations |
SQLOperations.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLOperations |
SQLOperations.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLOperations |
SQLOperations.queryWithParams(String sql,
io.vertx.core.json.JsonArray params) |
Executes the given SQL SELECT prepared statement which returns the results of the query.
|
SQLOperations |
SQLOperations.queryWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> resultHandler) |
Executes the given SQL SELECT prepared statement which returns the results of the query.
|
SQLOperations |
SQLOperations.update(String sql) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLOperations |
SQLOperations.update(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.UpdateResult>> resultHandler) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLOperations |
SQLOperations.updateWithParams(String sql,
io.vertx.core.json.JsonArray params) |
Executes the given prepared statement which may be an INSERT , UPDATE , or DELETE
statement with the given parameters
|
SQLOperations |
SQLOperations.updateWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.UpdateResult>> resultHandler) |
Executes the given prepared statement which may be an INSERT , UPDATE , or DELETE
statement with the given parameters
|