SQLConnection |
SQLConnection.batch(List<String> sqlStatements) |
Batch simple SQL strings and execute the batch where the async result contains a array of Integers.
|
SQLConnection |
SQLConnection.batch(List<String> sqlStatements,
Handler<AsyncResult<List<Integer>>> handler) |
Batch simple SQL strings and execute the batch where the async result contains a array of Integers.
|
SQLConnection |
SQLConnection.batchCallableWithParams(String sqlStatement,
List<JsonArray> inArgs,
List<JsonArray> outArgs) |
Batch a callable statement with all entries from the args list.
|
SQLConnection |
SQLConnection.batchCallableWithParams(String sqlStatement,
List<JsonArray> inArgs,
List<JsonArray> outArgs,
Handler<AsyncResult<List<Integer>>> handler) |
Batch a callable statement with all entries from the args list.
|
SQLConnection |
SQLConnection.batchWithParams(String sqlStatement,
List<JsonArray> args) |
Batch a prepared statement with all entries from the args list.
|
SQLConnection |
SQLConnection.batchWithParams(String sqlStatement,
List<JsonArray> args,
Handler<AsyncResult<List<Integer>>> handler) |
Batch a prepared statement with all entries from the args list.
|
SQLConnection |
SQLConnection.call(String sql) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLConnection |
SQLConnection.call(String sql,
Handler<AsyncResult<ResultSet>> resultHandler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLConnection |
SQLConnection.callWithParams(String sql,
JsonArray params,
JsonArray outputs) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLConnection |
SQLConnection.callWithParams(String sql,
JsonArray params,
JsonArray outputs,
Handler<AsyncResult<ResultSet>> resultHandler) |
Calls the given SQL PROCEDURE which returns the result from the procedure.
|
SQLConnection |
SQLConnection.commit() |
Commits all changes made since the previous commit/rollback.
|
SQLConnection |
SQLConnection.commit(Handler<AsyncResult<Void>> handler) |
Commits all changes made since the previous commit/rollback.
|
SQLConnection |
SQLConnection.execute(String sql) |
Executes the given SQL statement
|
SQLConnection |
SQLConnection.execute(String sql,
Handler<AsyncResult<Void>> resultHandler) |
Executes the given SQL statement
|
SQLConnection |
SQLConnection.getTransactionIsolation() |
Attempts to return the transaction isolation level for this Connection object to the one given.
|
SQLConnection |
SQLConnection.getTransactionIsolation(Handler<AsyncResult<TransactionIsolation>> handler) |
Attempts to return the transaction isolation level for this Connection object to the one given.
|
static SQLConnection |
SQLConnection.newInstance(SQLConnection arg) |
|
SQLConnection |
SQLConnection.query(String sql) |
Executes the given SQL SELECT statement which returns the results of the query.
|
SQLConnection |
SQLConnection.query(String sql,
Handler<AsyncResult<ResultSet>> resultHandler) |
Executes the given SQL SELECT statement which returns the results of the query.
|
SQLConnection |
SQLConnection.queryStream(String sql) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLConnection |
SQLConnection.queryStream(String sql,
Handler<AsyncResult<SQLRowStream>> handler) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLConnection |
SQLConnection.queryStreamWithParams(String sql,
JsonArray params) |
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
|
SQLConnection |
SQLConnection.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.
|
SQLConnection |
SQLConnection.queryWithParams(String sql,
JsonArray params) |
Executes the given SQL SELECT prepared statement which returns the results of the query.
|
SQLConnection |
SQLConnection.queryWithParams(String sql,
JsonArray params,
Handler<AsyncResult<ResultSet>> resultHandler) |
Executes the given SQL SELECT prepared statement which returns the results of the query.
|
SQLConnection |
SQLConnection.rollback() |
Rolls back all changes made since the previous commit/rollback.
|
SQLConnection |
SQLConnection.rollback(Handler<AsyncResult<Void>> handler) |
Rolls back all changes made since the previous commit/rollback.
|
SQLConnection |
SQLConnection.setAutoCommit(boolean autoCommit) |
Sets the auto commit flag for this connection.
|
SQLConnection |
SQLConnection.setAutoCommit(boolean autoCommit,
Handler<AsyncResult<Void>> resultHandler) |
Sets the auto commit flag for this connection.
|
SQLConnection |
SQLConnection.setOptions(SQLOptions options) |
Sets the desired options to be applied to the current connection when statements are executed.
|
SQLConnection |
SQLConnection.setQueryTimeout(int timeoutInSeconds) |
Deprecated.
|
SQLConnection |
SQLConnection.setTransactionIsolation(TransactionIsolation isolation) |
Attempts to change the transaction isolation level for this Connection object to the one given.
|
SQLConnection |
SQLConnection.setTransactionIsolation(TransactionIsolation isolation,
Handler<AsyncResult<Void>> handler) |
Attempts to change the transaction isolation level for this Connection object to the one given.
|
SQLConnection |
SQLConnection.update(String sql) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLConnection |
SQLConnection.update(String sql,
Handler<AsyncResult<UpdateResult>> resultHandler) |
Executes the given SQL statement which may be an INSERT , UPDATE , or DELETE
statement.
|
SQLConnection |
SQLConnection.updateWithParams(String sql,
JsonArray params) |
Executes the given prepared statement which may be an INSERT , UPDATE , or DELETE
statement with the given parameters
|
SQLConnection |
SQLConnection.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
|