Django-pyodbc mssql/freetds server connection problems on linux
Posted
by wizard
on Stack Overflow
See other posts from Stack Overflow
or by wizard
Published on 2010-05-07T21:20:46Z
Indexed on
2010/05/08
1:48 UTC
Read the original article
Hit count: 474
Error: ('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnectW)')
I'm migrating from developing on a windows development machine to linux machine in production and I'm having issues with the freetds driver. As far as I can tell that error message means it can't find the driver. I can connect via the cli via sqsh and tsql. I've setup my settings.py as such.
'bc2db': {
'ENGINE': 'sql_server.pyodbc',
'NAME': 'DataTEST',
'USER': 'appuser',
'PASSWORD': 'PASS',
'HOST': 'bc2.domain.com',
'options': {
'driver': 'FreeTDS',
}
},
Does anyone have any mssql experience with djano? do I have to use a dns? (how would I format that?)
Thanks
© Stack Overflow or respective owner