Uses of Class
io.vertx.mutiny.ext.sql.SQLClient
Packages that use SQLClient
-
Uses of SQLClient in io.vertx.mutiny.ext.jdbc
Subclasses of SQLClient in io.vertx.mutiny.ext.jdbcModifier and TypeClassDescriptionclass
An asynchronous client interface for interacting with a JDBC compliant database -
Uses of SQLClient in io.vertx.mutiny.ext.sql
Fields in io.vertx.mutiny.ext.sql with type parameters of type SQLClientMethods in io.vertx.mutiny.ext.sql that return SQLClientModifier and TypeMethodDescriptionSQLClient.callAndForget
(String sql) Variant ofcall(String)
that ignores the result of the operation.SQLClient.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.SQLClient.getConnectionAndForget()
Variant ofgetConnection()
that ignores the result of the operation.static SQLClient
SQLClient.newInstance
(io.vertx.ext.sql.SQLClient arg) SQLClient.queryAndForget
(String sql) Variant ofquery(String)
that ignores the result of the operation.SQLClient.queryStreamAndForget
(String sql) Variant ofqueryStream(String)
that ignores the result of the operation.SQLClient.queryStreamWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params) Variant ofqueryStreamWithParams(String,JsonArray)
that ignores the result of the operation.SQLClient.queryWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray arguments) Variant ofqueryWithParams(String,JsonArray)
that ignores the result of the operation.SQLClient.updateAndForget
(String sql) Variant ofupdate(String)
that ignores the result of the operation.SQLClient.updateWithParamsAndForget
(String sql, io.vertx.core.json.JsonArray params) Variant ofupdateWithParams(String,JsonArray)
that ignores the result of the operation.