1

我开始学习 django ,我正在尝试建立一个开发环境,如http://www.venkysblog.com/setup-django-on-windows-with-apache-and-mysql。我无法使其正常工作,因此我正在向后工作以确保一切正确。

我可以完成第 4 步。我已经确认 python 、 xampp 和 django 工作。我使用 phpmyadmin 创建了一个名为 django 的数据库

我有一个名为 testproject 的项目,其 settings.py 文件包括:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'post
        'NAME': 'django',                      # Or path to database file if usi
        'USER': 'root',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for localhost. No
        'PORT': '',                      # Set to empty string for default. Not
    }
}

当我运行 $ python manage.py runserver 我得到:

验证模型...

发现 0 个错误 Django 版本 1.4.3,使用设置 'testproject.settings' 开发服务器运行在 htp://127.0.0.1:8000/ 使用 CTRL-BREAK 退出服务器。

此时是否有明确的方法来测试与“django”数据库的连接?

提前致谢,

账单

4

1 回答 1

4

如果你这样做manage.py syncdb,它会尝试创建你的表,你会知道它是成功还是失败。

于 2013-01-31T21:23:16.120 回答