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

Django - OperationalError:(2006, 'Il server MySQL è andato via')

L'idea della soluzione è chiara:riconnettersi a mysql se la connessione corrente è interrotta.

Si prega di controllare questo:

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