我正在学习Django教程,我遇到了一些麻烦,因为我使用MySQL作为数据库。在
当我跑的时候python manage.py test polls
我明白了
^{pr2}$
这是我的设置.py在DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'USER123', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': 'USER123',
'PASSWORD': 'PASSWORD',
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}
}
我想知道是否有人能给我解释一下是怎么回事。谢谢您!在