文档首页
MySQL Connector/Python 开发人员指南
相关文档 下载此手册
PDF (US Ltr) - 0.7Mb
PDF (A4) - 0.7Mb


MySQL Connector/Python 开发人员指南  /  ...  /  pooling.PooledMySQLConnection 构造函数

10.4.1 pooling.PooledMySQLConnection 构造函数

语法

PooledMySQLConnection(cnxpool, cnx)

此构造函数接受连接池和连接参数,并返回一个池化连接。它由 MySQLConnectionPool 类使用。

参数

  • cnxpool: 一个 MySQLConnectionPool 实例。

  • cnx: 一个 MySQLConnection 实例。

示例

pcnx = mysql.connector.pooling.PooledMySQLConnection(cnxpool, cnx)