Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-connecting.html
Connector/Python provides a connect() call used to establish connections to the MySQL server. The following sections describe the permitted arguments for connect() and describe how to use option files that supply additional arguments.
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/connector-python/en/connector-python-connecting.html
Connector/Python provides a connect() call used to establish connections to the MySQL server. The following sections describe the permitted arguments for connect() and describe how to use option files that supply additional arguments.
https://dev.mysql.com/doc/internals/en/authentication-after-com-change-user-command.html
During Command Phase, a client can send a COM_CHANGE_USER command which will trigger logging into a new account, including the authentication handshake. Similar to the initial authentication the server may reply with a OK_Packet or ERR_Packet for ...
https://dev.mysql.com/doc/internals/en/authentication-method-change.html
the client connecting to the server the server responds with the Initial Handshake Packet the client sends the Handshake Response Packet the server responds with the Authentication Method Switch Request Packet to tell the client which ...
https://dev.mysql.com/doc/internals/en/cleaning-up-with-index-end.html
The [custom-engine.html#custom-engine-api-reference-index_end index_end()] method is a counterpart to the index_init() method. The purpose of the index_end() method is to clean up any preparations made by the index_init() method. If a storage ...
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-release-configuration.html
Unix (Makefiles) To control which compiler is chosen, set the CC and CXX environment variables to name the desired C and C++ compilers. (This is optional, but if you have different versions of the compilers, it gives better control.) mkdir bld cd ...
https://dev.mysql.com/doc/internals/en/cmake-variables-controlling-plugin-building.html
To build a plugin that is statically compiled into the server (assuming that the plugin supports static build), add -DWITH_<PLUGIN>=1 to the CMake command line. To exclude a plugin from the build, use -DWITHOUT_<PLUGIN>=1 If neither WITH_<PLUGIN> ...
https://dev.mysql.com/doc/internals/en/delete-table.html
Synopsis virtual int delete_table ( name); const char * name ; Description This is the delete_table method. By the time delete_table() has been called all opened references to this table will have been closed (and your globally shared references ...
https://dev.mysql.com/doc/internals/en/implementing-savepoint-rollback-method.html
The savepoint_rollback() method is called whenever a user issues the ROLLBACK TO SAVEPOINT statement: int (*savepoint_rollback) (THD *thd, void *sv); The *sv parameter points to the storage area that was previously passed to the savepoint_set() ...