配置不当的 ENGINE sqlite 、 Django
http://pastebin.com/umBiCJvp 这是回溯和设置。我正在使用 Django 版本 1.2.3。
http://pastebin.com/umBiCJvp here's the traceback and settings. I'm using Django version 1.2.3.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定正在运行 Django 1.2.3。从 Django 1.1 更改为 Django 1.2 时,此错误消息很常见(因为定义数据库设置的方式已更改)。
您可以通过运行
python manage.py shell
检查您的 Django 版本,然后:这应该会给您
(1,2,3,'final',0)
或其他内容相似的。如果不是 1.2.x 那么那就是你的问题。Are you sure that you are running Django 1.2.3. This error message is common when changing to Django 1.2 from 1.1 (since the way database settings are defined has changed).
You can check your version of Django by running
python manage.py shell
and then:That should give you
(1,2,3,'final',0)
or something similar. If it's not 1.2.x then thats your problem.