I'm working in an environment that has unixODBC installed on a org-wide centrally mounted drive, but we (the actual developers) aren't allowed to install drivers or datasources in it. It's all backwards but I have to live with it.
Right now I'm trying to build a python app that connects to a mssql 2005 server from this unix enviro, so I obviously need some sql drivers!
I circumvented my lack of access to the the preinstalled unixODBC by reinstalled unixODBC on a portion of the drive that I have full control over. I've installed freeTDS and configured everything so that I can successfully connect to the server with isql -- great!
Now the only problem is, when I execute a line in my python program (which is using pyodbc) like:
import pyodbc
pyodbc.connect("DSN=<dsn_name>;UID=...;PWD=...", autocommit=True)
I get
('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnectW)')
I assume this is because pyodbc is still looking for the original unixODBC install and not my local one. So I was wondering:
How do I configure my scripts to look for my local unixODBC install instead of the one installed on the main drive