以下是我在django settings.py中为数据库编写的代码:
DATABASES= {
'defualt': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'cameronkc',
'USER': 'root',
'PASSWORD': '123456',
'HOST': 'localhost',
'PORT': ''
}
}
以下是在命令提示符下执行>python manage.py migrate时收到的错误
django.db.utils.ConnectionDoesNotExist: The connection default doesn't exist
1条答案
按热度按时间4urapxun1#
你把默认值拼错了
DATABASES
听写变化'defualt'
至'default'
.