Uses of Class
io.vertx.mutiny.mysqlclient.MySQLConnection
Packages that use MySQLConnection
-
Uses of MySQLConnection in io.vertx.mutiny.mysqlclient
Fields in io.vertx.mutiny.mysqlclient with type parameters of type MySQLConnectionModifier and TypeFieldDescriptionstatic final TypeArg<MySQLConnection>MySQLConnection.__TYPE_ARGMethods in io.vertx.mutiny.mysqlclient that return MySQLConnectionModifier and TypeMethodDescriptionMySQLConnection.beginAndForget()Begin a transaction and returns aTransactionfor controlling and tracking this transaction.static MySQLConnectionMySQLConnection.cast(SqlConnection sqlConnection) Cast aSqlConnectiontoMySQLConnection.MySQLConnection.changeUserAndForget(io.vertx.mysqlclient.MySQLAuthOptions options) Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state.MySQLConnection.closeAndForget()Close the client and release the associated resources.MySQLConnection.closeHandler(Runnable handler) Set an handler called when the connection is closed.static MySQLConnectionMySQLConnection.connectAndAwait(Vertx vertx, io.vertx.mysqlclient.MySQLConnectOptions connectOptions) Create a connection to MySQL server with the givenconnectOptions.static MySQLConnectionMySQLConnection.connectAndAwait(Vertx vertx, String connectionUri) Likeconnect(Vertx, MySQLConnectOptions)with options built fromconnectionUri.MySQLConnection.debugAndForget()Send a DEBUG command to dump debug information to the server's stdout.MySQLConnection.exceptionHandler(Consumer<Throwable> handler) Set an handler called with connection errors.MySQLConnection.getInternalStatisticsAndForget()Send a STATISTICS command to get a human readable string of the server internal status.static MySQLConnectionMySQLConnection.newInstance(io.vertx.mysqlclient.MySQLConnection delegate) Creates a new instance of theMySQLConnection.MySQLConnection.pingAndForget()Send a PING command to check if the server is alive.MySQLConnection.prepareAndForget(String sql) Create a prepared statement using the givensqlstring.MySQLConnection.prepareAndForget(String sql, io.vertx.sqlclient.PrepareOptions options) Create a prepared statement using the givensqlstring.MySQLConnection.resetConnectionAndForget()Send a RESET_CONNECTION command to reset the session state.MySQLConnection.setOptionAndForget(io.vertx.mysqlclient.MySQLSetOption option) Send a SET_OPTION command to set options for the current connection.MySQLConnection.specifySchemaAndForget(String schemaName) Send a INIT_DB command to change the default schema of the connection.Methods in io.vertx.mutiny.mysqlclient that return types with arguments of type MySQLConnectionModifier and TypeMethodDescriptionstatic io.smallrye.mutiny.Uni<MySQLConnection>Create a connection to MySQL server with the givenconnectOptions.static io.smallrye.mutiny.Uni<MySQLConnection>Likeconnect(Vertx, MySQLConnectOptions)with options built fromconnectionUri.