Class MySQLConnection


  • public class MySQLConnection
    extends SqlConnection
    An interface which represents a connection to MySQL server.

    The connection object supports all the operations defined in the interface, in addition it provides MySQL utility command support:

    • COM_PING
    • COM_CHANGE_USER
    • COM_RESET_CONNECTION
    • COM_DEBUG
    • COM_INIT_DB
    • COM_STATISTICS
    • COM_SET_OPTION

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Field Detail

      • __TYPE_ARG

        public static final io.vertx.lang.rx.TypeArg<MySQLConnection> __TYPE_ARG
    • Constructor Detail

      • MySQLConnection

        public MySQLConnection​(Object delegate)
    • Method Detail

      • connect

        public static Single<MySQLConnection> connect​(Vertx vertx,
                                                      MySQLConnectOptions connectOptions)
        Create a connection to MySQL server with the given connectOptions.
        Parameters:
        vertx - the vertx instance
        connectOptions - the options for the connection
        Returns:
        a future notified with the connection or the failure
      • rxConnect

        public static Single<MySQLConnection> rxConnect​(Vertx vertx,
                                                        MySQLConnectOptions connectOptions)
        Create a connection to MySQL server with the given connectOptions.
        Parameters:
        vertx - the vertx instance
        connectOptions - the options for the connection
        Returns:
        a future notified with the connection or the failure
      • ping

        public Completable ping()
        Send a PING command to check if the server is alive.
        Returns:
        a future notified with the server response
      • rxPing

        public Completable rxPing()
        Send a PING command to check if the server is alive.
        Returns:
        a future notified with the server response
      • specifySchema

        public Completable specifySchema​(String schemaName)
        Send a INIT_DB command to change the default schema of the connection.
        Parameters:
        schemaName - name of the schema to change to
        Returns:
        a future notified with the execution result
      • rxSpecifySchema

        public Completable rxSpecifySchema​(String schemaName)
        Send a INIT_DB command to change the default schema of the connection.
        Parameters:
        schemaName - name of the schema to change to
        Returns:
        a future notified with the execution result
      • getInternalStatistics

        public Single<String> getInternalStatistics()
        Send a STATISTICS command to get a human readable string of the server internal status.
        Returns:
        a future notified with the execution result
      • rxGetInternalStatistics

        public Single<String> rxGetInternalStatistics()
        Send a STATISTICS command to get a human readable string of the server internal status.
        Returns:
        a future notified with the execution result
      • setOption

        public Completable setOption​(MySQLSetOption option)
        Send a SET_OPTION command to set options for the current connection.
        Parameters:
        option - the options to set
        Returns:
        a future notified with the execution result
      • rxSetOption

        public Completable rxSetOption​(MySQLSetOption option)
        Send a SET_OPTION command to set options for the current connection.
        Parameters:
        option - the options to set
        Returns:
        a future notified with the execution result
      • resetConnection

        public Completable resetConnection()
        Send a RESET_CONNECTION command to reset the session state.
        Returns:
        a future notified with the execution result
      • rxResetConnection

        public Completable rxResetConnection()
        Send a RESET_CONNECTION command to reset the session state.
        Returns:
        a future notified with the execution result
      • debug

        public Completable debug()
        Send a DEBUG command to dump debug information to the server's stdout.
        Returns:
        a future notified with the execution result
      • rxDebug

        public Completable rxDebug()
        Send a DEBUG command to dump debug information to the server's stdout.
        Returns:
        a future notified with the execution result
      • changeUser

        public Completable changeUser​(MySQLAuthOptions options)
        Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state.
        Parameters:
        options -
        Returns:
        a future notified with the execution result
      • rxChangeUser

        public Completable rxChangeUser​(MySQLAuthOptions options)
        Send a CHANGE_USER command to change the user of the current connection, this operation will also reset connection state.
        Parameters:
        options -
        Returns:
        a future notified with the execution result