解决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