Uses of Interface
io.vertx.mutiny.ext.sql.SQLOperations
- 
Packages that use SQLOperations Package Description io.vertx.mutiny.ext.jdbc io.vertx.mutiny.ext.sql  - 
- 
Uses of SQLOperations in io.vertx.mutiny.ext.jdbc
Classes in io.vertx.mutiny.ext.jdbc that implement SQLOperations Modifier and Type Class Description classJDBCClientAn asynchronous client interface for interacting with a JDBC compliant databaseMethods in io.vertx.mutiny.ext.jdbc that return SQLOperations Modifier and Type Method Description SQLOperationsJDBCClient. querySingleAndForget(String sql)Variant ofquerySingle(String)that ignores the result of the operation.SQLOperationsJDBCClient. 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 SQLOperations Modifier and Type Class Description classSQLClientA common asynchronous client interface for interacting with SQL compliant databaseclassSQLConnectionRepresents a connection to a SQL databaseMethods in io.vertx.mutiny.ext.sql that return SQLOperations Modifier and Type Method Description SQLOperationsSQLOperations. callAndForget(String sql)Variant ofcall(String)that ignores the result of the operation.SQLOperationsSQLOperations. 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)SQLOperationsSQLOperations. queryAndForget(String sql)Variant ofquery(String)that ignores the result of the operation.SQLOperationsSQLClient. querySingleAndForget(String sql)Variant ofquerySingle(String)that ignores the result of the operation.SQLOperationsSQLConnection. querySingleAndForget(String sql)Variant ofquerySingle(String)that ignores the result of the operation.SQLOperationsSQLOperations. querySingleAndForget(String sql)Variant ofquerySingle(String)that ignores the result of the operation.SQLOperationsSQLClient. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLOperationsSQLConnection. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLOperationsSQLOperations. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)Variant ofquerySingleWithParams(String,JsonArray)that ignores the result of the operation.SQLOperationsSQLOperations. queryStreamAndForget(String sql)Variant ofqueryStream(String)that ignores the result of the operation.SQLOperationsSQLOperations. queryStreamWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)Variant ofqueryStreamWithParams(String,JsonArray)that ignores the result of the operation.SQLOperationsSQLOperations. queryWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)Variant ofqueryWithParams(String,JsonArray)that ignores the result of the operation.SQLOperationsSQLOperations. updateAndForget(String sql)Variant ofupdate(String)that ignores the result of the operation.SQLOperationsSQLOperations. updateWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)Variant ofupdateWithParams(String,JsonArray)that ignores the result of the operation. 
 -