Django Version to be used on for Windows Server 2016 and MS SQL 2016

21 views
Skip to first unread message

Mahaveerchand Jain

unread,
Sep 2, 2019, 9:40:19 AM9/2/19
to Django users
Dear All,

I have Windows Server 2016 , IIS 10 and the Database is MS SQL 2016. 

I am not sure about the compatibility and  version of Django to use on Windows Server 2016  with IIS 10 and I want the Django to be integrated seamlessly with MS SQL server 2016  so any  module or library suggestion for the same.

Say I wish to run the Django application on Jython so that application runs on JVM then the compatible Jython version will help.

Thanks ,
Nirmal Kumar.M

RONAK JAIN

unread,
Sep 3, 2019, 3:00:59 AM9/3/19
to django...@googlegroups.com
Hi Django-user,

You can do simply change in Settings.py.

  1. First go on settings.py and look data base connection which is connect with default dbsqlite3.
  2. Remove there.
  3. Search on google how to integrate mysql with django..
  4. then connect with your django
  5. Maybe , you will get your answer.


Thanks 
RJ 



--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/01b7e022-2c63-4984-a4d4-0a4d49790cf9%40googlegroups.com.

Daniel Angel

unread,
Sep 3, 2019, 8:11:18 PM9/3/19
to django...@googlegroups.com







image.png

settings

DATABASES = {
    'default': {
        'ENGINE': 'sql_server.pyodbc',
        'NAME': 'PRUEBA_PYTHON_DJANGO',
        'HOST': ' MSSQLSERVER_2014',
        'USER': 'sa',
        'PORT': '1433',
        'PASSWORD': '@ddddd',
        'OPTIONS': {
            'driver': 'ODBC Driver 17 for SQL Server',
            'unicode_results': True,
        }
    }

--
Reply all
Reply to author
Forward
0 new messages