10.3.4 MySQLConnectionPool.set_config() 方法
语法
cnxpool.set_config(**kwargs)
此方法设置连接池中连接的配置参数。配置更改后从连接池请求的连接将使用新的参数。更改之前获取的连接不受影响,但当它们关闭(返回到连接池)时,将在使用新参数重新打开后,由连接池返回以用于后续的连接请求。
参数
示例
dbconfig = {
"database": "performance_schema",
"user": "admin",
"password": "password",
}
cnxpool.set_config(**dbconfig)