刚在django中settings.py进行设置mysql数据库。
当进行执行python manage.py shell命令时会报以下错误:
只需要在settings.py中
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', //在这里把“mysql”修改成“django.db.backends.mysql”即可解决
'NAME': 'my_db',
'USER': 'root',
'PASSWORD': '',
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '3306', # Set to empty string for default.
}
}