Django 连接到 MS SQL 以及 postgres
我有一个使用 postgres 的标准 django 设置,但我也想从 mssql 数据库访问数据。我已经安装了 pyodbc,并且正在安装 django-pyodbc,但说明告诉我如何将 mssql 设置为默认数据库,这不是我想要的。
我希望有人能指出我正确的方向。如果该方法绕过 django 并仅使用 Python 检索数据,我不会感到困扰,
干杯,
JJ
I have a standard django setup using postgres, but I also want to access data from a mssql database. I have installed pyodbc and was in the process of installing django-pyodbc but the instructions tell me how to make the mssql the default database which is not what I want.
I was hoping somebody could point me in the right direction. It doesnt bother me if the method bypasses django and just uses Python to retrieve the data
Cheers,
JJ
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Django 1.2 或更高版本,则可以使用 Django 的 内置 -多数据库支持。您可以按照
django-pyodbc
说明进行操作,并为数据库指定除'default'
以外的名称。If you're using Django 1.2 or later, you can use Django's built-in multi-database support. You can follow the
django-pyodbc
directions, and give your database a name other than'default'
.