方法一:sql
一、須要安裝pymssqldjango
pip install pymssqlide
二、使用方法:sqlserver
import pymssql conn=pymssql.connect(host='127.0.0.1',user='user',password='password',database='MyDB') cur=conn.cursor() cur.execute('select * from table1')
#若是是插入、刪除、更新語句切記要寫提交命令con.commit() print (cur.fetchall()) cur.close() conn.close()
方法二:fetch
一、安裝必要的組件:this
pip install django-sqlserver django-pytds pyodbc django-pyodbc pypiwin32 spa
二、修改settings.py的DATABASES:code
DATABASES = { # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), # } 'default': { 'ENGINE': 'sqlserver', 'NAME': 'MyDB', 'HOST': '127.0.0.1', 'PORT': '1433', 'USER': 'user', 'PASSWORD': 'password, 'OPTIONS': { 'DRIVER': 'SQL Server Native Client 10.0', }, } }
方法三:server
一、須要安裝 SQL Server Management Studio 或者 manually install Microsoft Data Access Components (MDAC)程序。sqlite
二、安裝django-mssql和pywin32:
pip install django-mssql
三、修改settings.py的DATABASES:
DATABASES = { # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), # } 'default': { 'NAME': 'MyDB', 'ENGINE': 'sqlserver_ado', 'HOST': '127.0.0.1', 'USER': 'user', 'PASSWORD': 'password', 'OPTIONS': { 'provider': 'SQLOLEDB', # Have also tried 'SQLCLI11' and 'SQLOLEDB' 'extra_params': 'DataTypeCompatibility=80' }, } }
provider爲'SQLCLI10'時如有問題,可改爲'SQLOLEDB' ,反之亦然。
方法四:
一、安裝django-pyodbc-azure和pyodbc
pip install django-pyodbc-azure pyodbc
二、修改settings.py的DATABASES:
DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': 'MyDB', 'USER': 'user', 'PASSWORD': 'password', 'HOST': '127.0.0.1', 'PORT': '', 'OPTIONS': { 'driver':'SQL Server Native Client 11.0', 'MARS_Connection': True, }, }, } # set this to False if you want to turn off pyodbc's connection pooling DATABASE_CONNECTION_POOLING = False