Uses of Class
io.vertx.mutiny.ext.sql.SQLConnection
Packages that use SQLConnection
-
Uses of SQLConnection in io.vertx.mutiny.ext.sql
Fields in io.vertx.mutiny.ext.sql with type parameters of type SQLConnectionMethods in io.vertx.mutiny.ext.sql that return SQLConnectionModifier and TypeMethodDescriptionSQLConnection.batchAndForget
(List<String> sqlStatements) Variant ofbatch(List)
that ignores the result of the operation.SQLConnection.batchCallableWithParamsAndForget
(String sqlStatement, List<io.vertx.core.json.JsonArray> inArgs, List<io.vertx.core.json.JsonArray> outArgs) Variant ofbatchCallableWithParams(String,List,List)
that ignores the result of the operation.SQLConnection.batchWithParamsAndForget
(String sqlStatement, List<io.vertx.core.json.JsonArray> args) Variant ofbatchWithParams(String,List)
that ignores the result of the operation.SQLConnection.callAndForget
(String sql) Variant ofcall(String)
that ignores the result of the operation.SQLConnection.callWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params, io.vertx.core.json.JsonArray outputs) Variant ofcallWithParams(String,JsonArray,JsonArray)
that ignores the result of the operation.SQLConnection.commitAndForget()
Variant ofcommit()
that ignores the result of the operation.SQLConnection.executeAndForget
(String sql) Variant ofexecute(String)
that ignores the result of the operation.SQLClient.getConnectionAndAwait()
Blocking variant ofSQLClient.getConnection()
.SQLConnection.getTransactionIsolationAndForget()
Variant ofgetTransactionIsolation()
that ignores the result of the operation.static SQLConnection
SQLConnection.newInstance
(io.vertx.ext.sql.SQLConnection arg) SQLConnection.queryAndForget
(String sql) Variant ofquery(String)
that ignores the result of the operation.SQLConnection.queryStreamAndForget
(String sql) Variant ofqueryStream(String)
that ignores the result of the operation.SQLConnection.queryStreamWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params) Variant ofqueryStreamWithParams(String,JsonArray)
that ignores the result of the operation.SQLConnection.queryWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params) Variant ofqueryWithParams(String,JsonArray)
that ignores the result of the operation.SQLConnection.rollbackAndForget()
Variant ofrollback()
that ignores the result of the operation.SQLConnection.setAutoCommitAndForget
(boolean autoCommit) Variant ofsetAutoCommit(boolean)
that ignores the result of the operation.SQLConnection.setOptions
(io.vertx.ext.sql.SQLOptions options) SQLConnection.setQueryTimeout
(int timeoutInSeconds) Deprecated.SQLConnection.setTransactionIsolationAndForget
(io.vertx.ext.sql.TransactionIsolation isolation) Variant ofsetTransactionIsolation(TransactionIsolation)
that ignores the result of the operation.SQLConnection.updateAndForget
(String sql) Variant ofupdate(String)
that ignores the result of the operation.SQLConnection.updateWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params) Variant ofupdateWithParams(String,JsonArray)
that ignores the result of the operation.Methods in io.vertx.mutiny.ext.sql that return types with arguments of type SQLConnectionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<SQLConnection>
SQLClient.getConnection()
Returns a connection that can be used to perform SQL operations on.
setOptions(SQLOptions)
withSQLOptions.setQueryTimeout(int)