1👍
Django doesn’t support MSSql out of the box. I would suggest trying an external package, like django-mssql.
0👍
From the code that I see you are trying to use third party package Django MSSQL
which needs these settings. To make these settings available for Django you first need to:-
pip install django-mssql
For further reference you can read:-
http://django-mssql.readthedocs.io/en/latest/quickstart.html
Source:stackexchange.com