Example usage for Java io.vertx.mysqlclient MySQLConnection fields, constructors, methods, implement or subclass
The text is from its open source code.
MySQLConnection | changeUser(MySQLAuthOptions options, Handler Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state. |
void | connect(Vertx vertx, MySQLConnectOptions connectOptions, Handler Create a connection to MySQL server with the given connectOptions . |
void | connect(Vertx vertx, String connectionUri, Handler Like #connect(Vertx,MySQLConnectOptions,Handler) with options build from connectionUri . |
MySQLConnection | debug(Handler Send a DEBUG command to dump debug information to the server's stdout. |
MySQLConnection | getInternalStatistics(Handler Send a STATISTICS command to get a human readable string of the server internal status. |
MySQLConnection | ping(Handler Send a PING command to check if the server is alive. |
MySQLConnection | resetConnection(Handler Send a RESET_CONNECTION command to reset the session state. |
MySQLConnection | setOption(MySQLSetOption option, Handler Send a SET_OPTION command to set options for the current connection. |
MySQLConnection | specifySchema(String schemaName, Handler Send a INIT_DB command to change the default schema of the connection. |