Search Results
                    
                    
            https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool.html
                                 This class provides for the instantiation and management of connection pools. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorraw.html
                                Example: import mysql.connector cnx = mysql.connector.connect() # Only this particular cursor will be raw cursor = cnx.cursor(raw=True) # All cursors created from cnx2 will be raw by default cnx2 = mysql.connector.connect(raw=True) . A ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-pooledmysqlconnection-constructor.html
                                 Syntax: PooledMySQLConnection(cnxpool, cnx) This constructor takes connection pool and connection arguments and returns a pooled connection. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-pooledmysqlconnection-pool-name.html
                                 Syntax: cnx.pool_name This property returns the name of the connection pool to which the connection belongs. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-cext.html
                                The use_pure option determines whether the Python or C version of this connector is enabled and used.  Connector/Python supports a C extension that interfaces with the MySQL C client library. For queries that return large result sets, using the C ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-reference.html
                                Examples should be considered working for Python 2.7, and Python 3.1 and greater. They might also work for older versions (such as Python 2.4) unless they use features introduced in newer Python versions. For example, exception handling using the as ...
                                            
                https://dev.mysql.com/doc/internals/en/a-mysql-client-logs-in.html
                                00 00 27 75 3e 6f 38 66 79 4e 00 ff f7 08 02 00 ..'u>o8fyN...... 00 00 00 00 00 00 00 00 00 00 00 00 00 57 4d 5d .............WM] 6a 7c 53 68 32 5c 59 2e 73 00 j|Sh2\Y.s. which responds with a handshake packet which contains the version, some flags ...
                                            
                https://dev.mysql.com/doc/internals/en/adding-platform-checks.html
                                 If you add a platform check for a specific OS or want to modify compiler flags, rather then introducing IF(CMAKE_SYSTEM_NAME MATCHES...) in configure.cmake, add them to the apropriate section in cmake/os/my_platform.cmake. 
                                            
                https://dev.mysql.com/doc/internals/en/algorithms.html
                                 MySQL uses many different algorithms and structures. This chapter tries to describe some of them. ...
                                            
                https://dev.mysql.com/doc/internals/en/array.html
                                 This section is yet to be written. ...