I know that django-mssql-1.6 / README :
SQL Server Versions
Supported Versions:
but, seeing that version 1.6 is the latest version, I wondered if anyone could find a way to connect to MS SQL Server 2014. I try, but I get an error message:
django.db.utils.OperationalError: (com_error (-2147352567, "An exception occurred.", (0, u'ADODB.Connection ", u'Provider could not be found. It may not be installed correctly. ', u'C : \ Windows \ HELP \ ADO270.CHM ', 1240655, -2146824582), None), u'Error open connection: DATA SOURCE = 127.0.0.1; Initial Catalog = testdb; Integrated Security = SSPI; PROVIDER = sqlncli10; DataTypeCompatibility = 80 ; MARS Connection = True ')
using config:
DATABASES = {
'default': {
'ENGINE': 'sqlserver_ado',
'NAME': 'testdb'
}
}
source
share