10.3.2 MySQLConnectionPool.add_connection()方法

句法:

cnxpool.add_connection(cnx = None)

此方法将新的或现有 的添加到池中,或者在池已满时 MySQLConnection引发 a 。PoolError

参数:

  • cnxMySQLConnection要添加到池中的对象。如果缺少此参数,池将创建一个新连接并添加它。

例子:

cnxpool.add_connection()    # add new connection to pool
cnxpool.add_connection(cnx) # add existing connection to pool