1

我正在使用python。我想使用线程访问一个数据库中的多个 mysql 表。

class DBThread(threading.Thread):

    def __init__(self):
        Thread.__init__(self)

    def __init__(self,i,db):

        self.t = i
        self.DB=db
        Thread.__init__(self)

    def run(self):

        time.sleep(0)
        mpo = self.DB.get_place(self.t)

###################################################################

for i in range(0,3):

        dbThread = DBThread(self,i,self.db)
        dbThread.start()
        threads.append(dbThread)

        for dbThread in threads:
            dbThread.join()       

但我收到一条错误消息

错误 2013:在查询期间丢失与 MySQL 服务器的连接错误 2013:在查询期间丢失与 MySQL 服务器的连接错误 2006:MySQL 服务器已消失

4

0 回答 0