Uses of Interface
io.vertx.mutiny.ext.sql.SQLOperations
Packages that use SQLOperations
-
Uses of SQLOperations in io.vertx.mutiny.ext.jdbc
Classes in io.vertx.mutiny.ext.jdbc that implement SQLOperationsModifier and TypeClassDescriptionclassAn asynchronous client interface for interacting with a JDBC compliant databaseMethods in io.vertx.mutiny.ext.jdbc that return SQLOperationsModifier and TypeMethodDescriptionJDBCClient.querySingleAndForget(String sql) Variant ofquerySingle(String)that ignores the result of the operation.JDBCClient.querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments) Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation. -
Uses of SQLOperations in io.vertx.mutiny.ext.sql
Classes in io.vertx.mutiny.ext.sql that implement SQLOperationsModifier and TypeClassDescriptionclassA common asynchronous client interface for interacting with SQL compliant databaseclassRepresents a connection to a SQL databaseMethods in io.vertx.mutiny.ext.sql that return SQLOperationsModifier and TypeMethodDescriptionSQLOperations.callAndForget(String sql) Variant ofcall(String)that ignores the result of the operation.SQLOperations.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.static SQLOperationsSQLOperations.newInstance(io.vertx.ext.sql.SQLOperations arg) SQLOperations.queryAndForget(String sql) Variant ofquery(String)that ignores the result of the operation.SQLClient.querySingleAndForget(String sql) Variant ofquerySingle(String)that ignores the result of the operation.SQLConnection.querySingleAndForget(String sql) Variant ofquerySingle(String)that ignores the result of the operation.SQLOperations.querySingleAndForget(String sql) Variant ofquerySingle(String)that ignores the result of the operation.SQLClient.querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments) Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLConnection.querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments) Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLOperations.querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments) Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLOperations.queryStreamAndForget(String sql) Variant ofqueryStream(String)that ignores the result of the operation.SQLOperations.queryStreamWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params) Variant ofqueryStreamWithParams(String,JsonArray)that ignores the result of the operation.SQLOperations.queryWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params) Variant ofqueryWithParams(String,JsonArray)that ignores the result of the operation.SQLOperations.updateAndForget(String sql) Variant ofupdate(String)that ignores the result of the operation.SQLOperations.updateWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params) Variant ofupdateWithParams(String,JsonArray)that ignores the result of the operation.