SQLClient |
SQLClient.call(String sql) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLClient |
SQLClient.call(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> handler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLClient |
SQLClient.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.
|
SQLClient |
SQLClient.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>> handler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLClient |
SQLClient.getConnection() |
Returns a connection that can be used to perform SQL operations on.
|
SQLClient |
SQLClient.getConnection(io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLConnection>> handler) |
Returns a connection that can be used to perform SQL operations on.
|
static SQLClient |
SQLClient.newInstance(io.vertx.ext.sql.SQLClient arg) |
|
SQLClient |
SQLClient.query(String sql) |
Execute a single SQL statement, this method acquires a connection from the the pool and executes the SQL
statement and returns it back after the execution.
|
SQLClient |
SQLClient.query(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> handler) |
Execute a single SQL statement, this method acquires a connection from the the pool and executes the SQL
statement and returns it back after the execution.
|
SQLClient |
SQLClient.queryStream(String sql) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLClient |
SQLClient.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.
|
SQLClient |
SQLClient.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.
|
SQLClient |
SQLClient.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.
|
SQLClient |
SQLClient.queryWithParams(String sql,
io.vertx.core.json.JsonArray arguments) |
Execute a single SQL prepared statement, this method acquires a connection from the the pool and executes the SQL
prepared statement and returns it back after the execution.
|
SQLClient |
SQLClient.queryWithParams(String sql,
io.vertx.core.json.JsonArray arguments,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.ResultSet>> handler) |
Execute a single SQL prepared statement, this method acquires a connection from the the pool and executes the SQL
prepared statement and returns it back after the execution.
|
SQLClient |
SQLClient.update(String sql) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLClient |
SQLClient.update(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.UpdateResult>> handler) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLClient |
SQLClient.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
|
SQLClient |
SQLClient.updateWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.sql.UpdateResult>> handler) |
Executes the given prepared statement which may be an INSERT , UPDATE , or DELETE
statement with the given parameters
|