Hello everybody,
I am trying to connect my Django project with a sybase database but i always get this mistake : Cannot locate reference to the DB server specified in DSURL. Here is my connection String :
'apidata': {
'ENGINE': "sql_server.pyodbc",
'HOST': "dsp_adt_django",
'USER': "********",
'PASSWORD': "********",
'NAME': "APIDATA",
'PORT': 4600,
'OPTIONS': {
'driver': 'Adaptive Server Enterprise',
'isolation_level':'READ UNCOMMITTED',
}
}
Please Help !!