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