Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-process-info.html
Instead, use the SHOW PROCESSLIST statement or query the tables found in the database INFORMATION_SCHEMA.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-statistics.html
Returns a dictionary containing information about the MySQL server including uptime in seconds and the number of running threads, questions, reloads, and open tables.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference.html
This section provides reference material for the Connector/ODBC API, showing supported functions and methods, supported MySQL column types and the corresponding native type in Connector/ODBC, and the error codes returned by Connector/ODBC when a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-character-set-name.html
Syntax: charset = ccnx.character_set_name() Returns the name of the default character set for the current MySQL session. When this is the case, a name usable by Python is returned. For example, the 'utf8mb4' MySQL character set name is returned as ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-fetch-fields.html
Syntax: field_info = ccnx.fetch_fields() Fetches column information for the active result set. Returns a list of tuples, one tuple per column Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-field-count.html
Syntax: count = ccnx.field_count() Returns the number of columns in the active result set.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-get-host-info.html
Syntax: info = ccnx.get_host_info() Returns a description of the type of connection in use as a string.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-get-ssl-cipher.html
Syntax: info = ccnx.get_ssl_cipher() Returns the SSL cipher used for the current session, or None if SSL is not in use.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-hex-string.html
Syntax: str = ccnx.hex_string(string_to_hexify) Encodes a value in hexadecimal format and wraps it within X''.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-num-fields.html
Syntax: count = ccnx.num_fields() Returns the number of columns in the active result set.