Mysql
 sql >> Datenbank >  >> RDS >> Mysql

python pymysql.err.OperationalError:(2013, 'Verlorene Verbindung zum MySQL-Server während der Abfrage')

hoffe es kann helfen:

while True:  #it works until the data was not saved
    try:
        with connection.cursor() as cursor:


            print ('saving company details to db')
            cursor.execute("""INSERT INTO company(
                                                   companyname,address,city,pincode,website) 
                                               VALUES (%s, %s, %s, %s, %s)""",
                                               (companyname, companyaddress, companycity, 
                                                companypostalcode, companywebsite))
        connection.commit()
        break
    except OperationalError:
        connection.ping(True)
print ("Company Data saved")

Sie können auch eine ähnliche Frage sehen mit Verwendung des Verbindungspools

oder lesen Sie die Quelle