解決python pymysql.err.OperationalError: (2013, 'Lost connection to MySQL server during query')


解決python pymysql.err.OperationalError: (2013, 'Lost connection to MySQL server during query')

學習了:https://stackoverflow.com/questions/35817479/python-pymysql-err-operationalerror-2013-lost-connection-to-mysql-server-dur

 

            sql = "insert into aaa(id, a, b, c, d) values(%s,%s,%s,%s,%s)"
            while True:
                try:
                    with connect.cursor() as cursor:  # 獲取游標
                        cursor.execute(sql, (id01, a, b[0], c[1], d))
                    connect.commit()
                    break
                except Exception:
                    connect.ping(True)

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM