欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【error】django.db.utils.OperationalError: (1193, "Unknown system variable 'storage_engine'")

程序员文章站 2022-05-19 22:10:23
...

【error】django.db.utils.OperationalError: (1193, "Unknown system variable 'storage_engine'")
当我们连接数据库时,有需要自定义option,可以用字典的形式

DATABASES = {  
    'default': {  
    'ENGINE': 'django.db.backends.mysql', # Add 
    'NAME': 'am',             # Or path to database file if using sqlite3.  
    'USER': 'probe',           # Not used with sqlite3.  
    'PASSWORD': '',                  # Not used with sqlite3.  
    'HOST': 'localhost',                      # Set to empty string for localhost. Not used with sqlite3.  
    'PORT': '3306',                      # Set to empty string for default. Not used with sqlite3.  
    'OPTIONS': {  
                'init_command': 'SET storage_engine=INNODB',  
    },  
    },  
}  

但是,有时候我们会遇到如下错误

django.db.utils.OperationalError: (1193, "Unknown system variable 'storage_engine'")

需要把

"OPTIONS":{"init_command":"SET storage_engine=INNODB;"}

改成

"OPTIONS":{"init_command":"SET default_storage_engine=INNODB;"}

问题是mysql版本导致的!