MySQL Connector/Python Release Notes
Syntax:
cnxpool.add_connection(cnx = None)
This method adds a new or existing
MySQLConnection
to the pool, or raises a
PoolError
if the pool is full.
Arguments:
cnx
: TheMySQLConnection
object to be added to the pool. If this argument is missing, the pool creates a new connection and adds it.
Example:
cnxpool.add_connection() # add new connection to pool
cnxpool.add_connection(cnx) # add existing connection to pool