gpt4 book ai didi

python - Django 与 SQL Server 上的数据库

转载 作者:行者123 更新时间:2023-12-01 01:11:28 27 4
gpt4 key购买 nike

我有一个使用 sqlite3(默认数据库)的项目,我正在尝试使用 Microsoft SQL Server。

我正在关注these steps我已经安装了 pymssql 包,但现在我不知道需要做什么才能将 Django 连接到 SQL Server 数据库。

最佳答案

一种方法是使用django-mssql封装:

  1. 通过 PIP 安装软件包:pip install django-mssql

  2. 将数据库的相关设置添加到settings.py中。

    DATABASES = {
    'default': {
    'NAME': 'my_database',
    'ENGINE': 'sqlserver_ado', # <-- don't change this as this is module name
    'HOST': 'dbserver\\ss2012',
    'USER': '',
    'PASSWORD': '',
    }
    }

Do not include a django.db.backends. prefix. That is only for core backends that are included with Django, not 3rd party backends.

关于python - Django 与 SQL Server 上的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54827833/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com