Changes between Initial Version and Version 1 of Ticket #29659
- Timestamp:
- 08/10/18 18:02:17 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29659
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Property
Status
changed from
-
Ticket #29659 – Description
initial v1 2 2 3 3 I am trying to connect to SQL server 2012 using Pyodbc and DJango framework but the version of Django is 2.1. Now, when I try to connect using below code when I only have Pyodbc installed then the below code doesnot run. 4 4 {{{ 5 5 DATABASES = { 6 6 'default': { … … 22 22 }, 23 23 } 24 24 }}} 25 25 26 26 But when I install django-pyodbc-azure and try to run the above code by running python manage.py inspectdb command, it works.