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 class
JDBCClient
An asynchronous client interface for interacting with a JDBC compliant databaseMethods in io.vertx.mutiny.ext.jdbc that return SQLOperations Modifier and Type Method Description SQLOperations
JDBCClient. querySingleAndForget(String sql)
Variant ofquerySingle(String)
that ignores the result of the operation.SQLOperations
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 SQLOperations Modifier and Type Class Description class
SQLClient
A common asynchronous client interface for interacting with SQL compliant databaseclass
SQLConnection
Represents a connection to a SQL databaseMethods in io.vertx.mutiny.ext.sql that return SQLOperations Modifier and Type Method Description SQLOperations
SQLOperations. callAndForget(String sql)
Variant ofcall(String)
that ignores the result of the operation.SQLOperations
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 SQLOperations
SQLOperations. newInstance(io.vertx.ext.sql.SQLOperations arg)
SQLOperations
SQLOperations. queryAndForget(String sql)
Variant ofquery(String)
that ignores the result of the operation.SQLOperations
SQLClient. querySingleAndForget(String sql)
Variant ofquerySingle(String)
that ignores the result of the operation.SQLOperations
SQLConnection. querySingleAndForget(String sql)
Variant ofquerySingle(String)
that ignores the result of the operation.SQLOperations
SQLOperations. querySingleAndForget(String sql)
Variant ofquerySingle(String)
that ignores the result of the operation.SQLOperations
SQLClient. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)
Variant ofquerySingleWithParams(String,JsonArray)
that ignores the result of the operation.SQLOperations
SQLConnection. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)
Variant ofquerySingleWithParams(String,JsonArray)
that ignores the result of the operation.SQLOperations
SQLOperations. querySingleWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)
Variant ofquerySingleWithParams(String,JsonArray)
that ignores the result of the operation.SQLOperations
SQLOperations. queryStreamAndForget(String sql)
Variant ofqueryStream(String)
that ignores the result of the operation.SQLOperations
SQLOperations. queryStreamWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)
Variant ofqueryStreamWithParams(String,JsonArray)
that ignores the result of the operation.SQLOperations
SQLOperations. queryWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)
Variant ofqueryWithParams(String,JsonArray)
that ignores the result of the operation.SQLOperations
SQLOperations. updateAndForget(String sql)
Variant ofupdate(String)
that ignores the result of the operation.SQLOperations
SQLOperations. updateWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)
Variant ofupdateWithParams(String,JsonArray)
that ignores the result of the operation.
-