MySQL Connector/Python Release Notes
Syntax:
Press CTRL+C to copyPooledMySQLConnection(cnxpool, cnx)
This constructor takes connection pool and connection arguments
and returns a pooled connection. It is used by the
MySQLConnectionPool
class.
Arguments:
cnxpool
: AMySQLConnectionPool
instance.cnx
: AMySQLConnection
instance.
Example:
Press CTRL+C to copypcnx = mysql.connector.pooling.PooledMySQLConnection(cnxpool, cnx)