Uses of Class
io.vertx.mutiny.ext.sql.SQLClient
-
Packages that use SQLClient Package Description io.vertx.mutiny.ext.jdbc io.vertx.mutiny.ext.sql -
-
Uses of SQLClient in io.vertx.mutiny.ext.jdbc
Subclasses of SQLClient in io.vertx.mutiny.ext.jdbc Modifier and Type Class Description class
JDBCClient
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 SQLClient Modifier and Type Field Description static TypeArg<SQLClient>
SQLClient. __TYPE_ARG
Methods in io.vertx.mutiny.ext.sql that return SQLClient Modifier and Type Method Description SQLClient
SQLClient. callAndForget(String sql)
Variant ofcall(String)
that ignores the result of the operation.SQLClient
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
SQLClient. getConnectionAndForget()
Variant ofgetConnection()
that ignores the result of the operation.static SQLClient
SQLClient. newInstance(io.vertx.ext.sql.SQLClient arg)
SQLClient
SQLClient. queryAndForget(String sql)
Variant ofquery(String)
that ignores the result of the operation.SQLClient
SQLClient. queryStreamAndForget(String sql)
Variant ofqueryStream(String)
that ignores the result of the operation.SQLClient
SQLClient. queryStreamWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)
Variant ofqueryStreamWithParams(String,JsonArray)
that ignores the result of the operation.SQLClient
SQLClient. queryWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)
Variant ofqueryWithParams(String,JsonArray)
that ignores the result of the operation.SQLClient
SQLClient. updateAndForget(String sql)
Variant ofupdate(String)
that ignores the result of the operation.SQLClient
SQLClient. updateWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)
Variant ofupdateWithParams(String,JsonArray)
that ignores the result of the operation.
-