Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection.html
The MySQLConnection class is used to open and manage a connection to a MySQL server. It also used to send commands and SQL statements and read the results.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-problems.html
While configuring a Connector/ODBC DSN, a Could Not Load Translator or Setup Library error occurs For more information, refer to MS KnowledgeBase Article(Q260558). The Connector/ODBC .dll (Windows) and .so (Linux) file names depend on several ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-reset-connection.html
Syntax: ccnx.reset_connection() Resets the user variables and session variables for a connection session.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-reset-connection.html
Syntax: cnx.cmd_reset_connection() Resets the connection by sending a COM_RESET_CONNECTION command to the server to clear the session state. For MySQL servers older than 5.7.3 (when COM_RESET_CONNECTION was introduced), the reset_session() method ...This method permits the session state to be cleared without ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection.html
The MySQLConnection class is used to open and manage a connection to a MySQL server. It also used to send commands and SQL statements and read the results.
https://dev.mysql.com/doc/internals/en/com-reset-connection.html
COM_RESET_CONNECTION: Resets the session state; more lightweight than COM_CHANGE_USER because it does not close and reopen the connection, and does not re-authenticate Payload 1 [1f] COM_RESET_CONNECTION Returns a ERR_Packet a OK_Packet .
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-connect-nonblocking-stage.html
enum connect_stage mysql_get_connect_nonblocking_stage(MYSQL *mysql) Description mysql_get_connect_nonblocking_stage() provides a function to determine which stage of the mysql_real_connect_nonblocking state machine is in currently. This function ...For general information about writing asynchronous C API applications, see Chapter 7, C API Asynchronous ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect-nonblocking.html
enum net_async_status mysql_real_connect_nonblocking(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned long client_flag) Description Note ...For general ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reset-connection-nonblocking.html
enum net_async_status mysql_reset_connection_nonblocking(MYSQL *mysql) Description Note mysql_reset_connection_nonblocking() is an asynchronous function. It is the counterpart of the mysql_reset_connection() synchronous function, for use by ...For ...
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-6.html
(Bug #37389565) Bugs Fixed Important Note; Group Replication: The Group Communication System (GCS) handles Group Replication communication between members, and keeps track of the group membership and connections between all group members. In the ...