Ticket #13906: 13906.diff

File 13906.diff, 715 bytes (added by Graham King, 13 years ago)

Adds commented out OPTIONS to conf/project_template/settings.py setting tx level

  • django/conf/project_template/settings.py

     
    1717        'PASSWORD': '',                  # Not used with sqlite3.
    1818        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
    1919        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
     20        # Recommended for MySQL. See http://code.djangoproject.com/ticket/13906
     21        #'OPTIONS': {'init_command': 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED'},
    2022    }
    2123}
    2224
Back to Top