[Django]-Linux + Django + SQLServer

7👍

Django-MSSQL only works on Windows, hence the pywin32 dependency (Actually, anything ADO is Windows dependent since it’s built on Microsoft’s ActiveX).

Try Django-SQLServer. It’s based on Django-MSSQL but can pass info using python-tds which is not platform specific.

1👍

I will suggest to use django-pyodbc-azure instead of Django-MSSQL

  1. Supports Django 2.0.3
  2. Supports Microsoft SQL Server 2008/2008R2, 2012, 2014, 2016, 2017 and Azure SQL Database
  3. Compatible with Micosoft ODBC Driver for SQL Server, SQL Server
    Native Client, and FreeTDS ODBC drivers

Leave a comment