Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
If this argument is not given, Connector/Python automatically generates the name, composed from whichever of the host, port, user, and database connection arguments are given in kwargs, in that order. Syntax: MySQLConnectionPool(pool_name=None, ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-execute.html
If the connection is configured to fetch warnings, warnings generated by the operation are available through the MySQLCursor.fetchwarnings() method. Syntax: cursor.execute(operation, params=None) iterator = cursor.execute(operation, params=None) # ...
https://dev.mysql.com/doc/connector-python/en/index.html
Abstract This manual describes how to install and configure MySQL Connector/Python, a self-contained Python driver for communicating with MySQL servers, and how to use it to develop database applications. The latest MySQL Connector/Python version ...
https://dev.mysql.com/doc/internals/en/auth-phase-fast-path.html
The fast authentication path is used if both client and server used method M to generate authentication data in the initial handshake. Assume that client wants to log in as user U and that user account uses authentication method M. In that case the ...
https://dev.mysql.com/doc/internals/en/automatic-trace-purging.html
Thus, if a statement contains substatements (example: invokes stored procedures, stored functions, triggers), the top statement and substatements each generate one trace, but at the execution's end only the last substatement's trace is visible. A ...
https://dev.mysql.com/doc/internals/en/autotools-plugin-macros.html
Example: MYSQL_PLUGIN_DEPENDS(ndbcluster, [partition]) Performing the magic: MYSQL_CONFIGURE_PLUGINS(default-names) Actually performs the task of generating the shell scripts for configure based upon the declarations made previously. The following ...
https://dev.mysql.com/doc/internals/en/binary-log-overview.html
[Some information in this section is derived from Chapter 20, The Binary Log, in the MySQL Reference Manual.] The binary log is a set of log files that contain information about data modifications made to a MySQL server instance. The log is enabled ...
https://dev.mysql.com/doc/internals/en/binary-log-structure-and-contents.html
Each event contains header bytes followed by data bytes: The header bytes provide information about the type of event, when it was generated, by which server, and so forth. The binary log is a set of files that contain information about data ...
https://dev.mysql.com/doc/internals/en/changing-configuration-options.html
Check the WITH_EMBEDDED_SERVER check box Click the Configure button Click the Generate button Close cmake-gui . The preceding procedure builds with the default configuration, which may not be suitable for your needs. Assume that you want to change ...
https://dev.mysql.com/doc/internals/en/compiling-for-different-hardware-achitectures.html
GCC (on Linux) or Sun Studio Use compile option -m32 (force 32-bit build), -m64 (force 64-bit build) Windows, Visual Studio generator Use cmake path_to_source_dir -G "Visual Studio 10 2010 Win64" to compile 64-bit (x64) Mac OS X Use the ...You can ...