sql >> Database >  >> RDS >> Mysql

Django - OperationalError:(2006, 'MySQL-server is verdwenen')

Het idee van de oplossing is duidelijk:maak opnieuw verbinding met mysql als de huidige verbinding wordt verbroken.

Bekijk dit eens:

def make_sure_mysql_usable():
    from django.db import connection, connections
    # mysql is lazily connected to in django.
    # connection.connection is None means
    # you have not connected to mysql before
    if connection.connection and not connection.is_usable():
        # destroy the default mysql connection
        # after this line, when you use ORM methods
        # django will reconnect to the default mysql
        del connections._connections.default


  1. SQL standaard UPSERT-aanroep

  2. Hoe de toegestane bijlagegrootte te vergroten bij het verzenden van e-mail in SQL Server (T-SQL)

  3. Nieuwe release:Spotlight Tuning Pack 7.1.9

  4. MySQL:transacties over meerdere threads