Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

Django - OperationalError:(2006, 'MySQL सर्वर चला गया है')

समाधान का विचार स्पष्ट है:यदि वर्तमान कनेक्शन टूट गया है, तो mysql से पुनः कनेक्ट करें।

कृपया इसे देखें:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. सभी MySQL डेटाबेस को एक बार में निर्यात और आयात करें

  2. PHP जांचें कि क्या स्ट्रिंग में एक अक्षर है

  3. Grails और MySQL कनेक्शन अपवाद

  4. AbstractMethodError on resultset.getObject

  5. MySQL:#1075 - गलत तालिका परिभाषा; ऑटोइनक्रिकमेंट बनाम दूसरी कुंजी?