sql >> Database teknologi >  >> RDS >> Mysql

python pymysql.err.OperationalError:(2013, 'Mistet forbindelse til MySQL-server under forespørgsel')

håber det kan hjælpe:

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")

Du kan også se lignende spørgsmål med brug af forbindelsespulje

eller læs kilden




  1. MINUS i MySQL?

  2. Hvordan forbinder man XAMPP MySQL lokal DB ved hjælp af JDBC?

  3. MySQL LOAD_FILE returnerer NULL

  4. Multiple indsæt SQL oracle