构建连接池实例def __init__(self, maxconnections, connstr,dbtype):from Queue import Queueself._pool = Queue(maxconnections) # create the queueself.connstr = connstrself.dbtype=dbtypeself.maxconnections=maxconnections#根据你给数目来创建链接,并且写入刚才创建的队列里面。