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...