SQLConnection |
SQLConnection.batchAndForget(List<String> sqlStatements) |
Variant of io.vertx.mutiny.ext.sql.SQLConnection#batch(List) that ignores the result of the operation.
|
SQLConnection |
SQLConnection.batchCallableWithParamsAndForget(String sqlStatement,
List<io.vertx.core.json.JsonArray> inArgs,
List<io.vertx.core.json.JsonArray> outArgs) |
Variant of io.vertx.mutiny.ext.sql.SQLConnection#batchCallableWithParams(String,List,List) that ignores the result of the operation.
|
SQLConnection |
SQLConnection.batchWithParamsAndForget(String sqlStatement,
List<io.vertx.core.json.JsonArray> args) |
Variant of io.vertx.mutiny.ext.sql.SQLConnection#batchWithParams(String,List) that ignores the result of the operation.
|
SQLConnection |
SQLConnection.callAndForget(String sql) |
Variant of call(String) that ignores the result of the operation.
|
SQLConnection |
SQLConnection.callWithParamsAndForget(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.json.JsonArray outputs) |
|
SQLConnection |
SQLConnection.commitAndForget() |
Variant of commit() that ignores the result of the operation.
|
SQLConnection |
SQLConnection.executeAndForget(String sql) |
|
SQLConnection |
SQLClient.getConnectionAndAwait() |
|
SQLConnection |
SQLConnection.getTransactionIsolationAndForget() |
|
static SQLConnection |
SQLConnection.newInstance(io.vertx.ext.sql.SQLConnection arg) |
|
SQLConnection |
SQLConnection.queryAndForget(String sql) |
Variant of query(String) that ignores the result of the operation.
|
SQLConnection |
SQLConnection.queryStreamAndForget(String sql) |
|
SQLConnection |
SQLConnection.queryStreamWithParamsAndForget(String sql,
io.vertx.core.json.JsonArray params) |
|
SQLConnection |
SQLConnection.queryWithParamsAndForget(String sql,
io.vertx.core.json.JsonArray params) |
|
SQLConnection |
SQLConnection.rollbackAndForget() |
Variant of rollback() that ignores the result of the operation.
|
SQLConnection |
SQLConnection.setAutoCommitAndForget(boolean autoCommit) |
|
SQLConnection |
SQLConnection.setOptions(io.vertx.ext.sql.SQLOptions options) |
|
SQLConnection |
SQLConnection.setQueryTimeout(int timeoutInSeconds) |
Deprecated.
|
SQLConnection |
SQLConnection.setTransactionIsolationAndForget(io.vertx.ext.sql.TransactionIsolation isolation) |
|
SQLConnection |
SQLConnection.updateAndForget(String sql) |
|
SQLConnection |
SQLConnection.updateWithParamsAndForget(String sql,
io.vertx.core.json.JsonArray params) |
|