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 classJDBCClientAn 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_ARGMethods in io.vertx.mutiny.ext.sql that return SQLClient Modifier and Type Method Description SQLClientSQLClient. callAndForget(String sql)Variant ofcall(String)that ignores the result of the operation.SQLClientSQLClient. 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.SQLClientSQLClient. getConnectionAndForget()Variant ofgetConnection()that ignores the result of the operation.static SQLClientSQLClient. newInstance(io.vertx.ext.sql.SQLClient arg)SQLClientSQLClient. queryAndForget(String sql)Variant ofquery(String)that ignores the result of the operation.SQLClientSQLClient. queryStreamAndForget(String sql)Variant ofqueryStream(String)that ignores the result of the operation.SQLClientSQLClient. queryStreamWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)Variant ofqueryStreamWithParams(String,JsonArray)that ignores the result of the operation.SQLClientSQLClient. queryWithParamsAndForget(String sql, io.vertx.core.json.JsonArray arguments)Variant ofqueryWithParams(String,JsonArray)that ignores the result of the operation.SQLClientSQLClient. updateAndForget(String sql)Variant ofupdate(String)that ignores the result of the operation.SQLClientSQLClient. updateWithParamsAndForget(String sql, io.vertx.core.json.JsonArray params)Variant ofupdateWithParams(String,JsonArray)that ignores the result of the operation. 
 -