内向犀牛

文章
5
资源
0
加入时间
3年1月13天

python mysql 连接池使用

[code="python"]import MySQLdbfrom DBUtils.PooledDB import PooledDBdbpool = PooledDB(creator=MySQLdb, maxusage=1000,host='host',user='root', passwd='pwd',db='test')conn = dbpool.connect...