Changes between Initial Version and Version 1 of Ticket #29659
- Timestamp:
- Aug 10, 2018, 1:02:17 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29659
- Property Resolution → invalid
- Property Status new → closed
-
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.