static MySQLConnection |
MySQLConnection.cast(SqlConnection sqlConnection) |
|
MySQLConnection |
MySQLConnection.changeUser(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 |
MySQLConnection.changeUser(io.vertx.mysqlclient.MySQLAuthOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state.
|
MySQLConnection |
MySQLConnection.closeHandler(io.vertx.core.Handler<Void> handler) |
|
MySQLConnection |
MySQLConnection.debug() |
Send a DEBUG command to dump debug information to the server's stdout.
|
MySQLConnection |
MySQLConnection.debug(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a DEBUG command to dump debug information to the server's stdout.
|
MySQLConnection |
MySQLConnection.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
|
MySQLConnection |
MySQLConnection.getInternalStatistics() |
Send a STATISTICS command to get a human readable string of the server internal status.
|
MySQLConnection |
MySQLConnection.getInternalStatistics(io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler) |
Send a STATISTICS command to get a human readable string of the server internal status.
|
static MySQLConnection |
MySQLConnection.newInstance(io.vertx.mysqlclient.MySQLConnection arg) |
|
MySQLConnection |
MySQLConnection.ping() |
Send a PING command to check if the server is alive.
|
MySQLConnection |
MySQLConnection.ping(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a PING command to check if the server is alive.
|
MySQLConnection |
MySQLConnection.prepare(String sql) |
|
MySQLConnection |
MySQLConnection.prepare(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<PreparedStatement>> handler) |
|
MySQLConnection |
MySQLConnection.resetConnection() |
Send a RESET_CONNECTION command to reset the session state.
|
MySQLConnection |
MySQLConnection.resetConnection(io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a RESET_CONNECTION command to reset the session state.
|
MySQLConnection |
MySQLConnection.setOption(io.vertx.mysqlclient.MySQLSetOption option) |
Send a SET_OPTION command to set options for the current connection.
|
MySQLConnection |
MySQLConnection.setOption(io.vertx.mysqlclient.MySQLSetOption option,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a SET_OPTION command to set options for the current connection.
|
MySQLConnection |
MySQLConnection.specifySchema(String schemaName) |
Send a INIT_DB command to change the default schema of the connection.
|
MySQLConnection |
MySQLConnection.specifySchema(String schemaName,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Send a INIT_DB command to change the default schema of the connection.
|