I have a project where i need to connect Nexus DB
in a Django
application. I have tried with Django-pyodbc
,
DATABASES = {
'default': {
'ENGINE': "django_pyodbc",
'HOST': "nexusdb@xxx.xxx.x.xx",
'USER': "",
'PASSWORD': "",
'NAME': "testDB",
'OPTIONS': {
'driver': '{NexusDB V3.10 Driver}',
'host_is_server': True,
},
}
}
but failed to establish connection.
I have tried latest alpha release of Django-pyodbc2.0.0a1
and django-pyodbc-azure
, but found so many SQL Server specific issues. found that it is specific toMS SQL Server
and Microsoft azure Database
.
Does pyodbc
on its own connect to NexusDB
? If so, can it execute queries?
Does Django-pyodbc
work correctly with a different ODBC driver?
Does Django-pyodbc
support Nexus DB
?
Can anyone help me on this ?
Thanks