Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

pyodbc is tricky to install in custom setups. You need to edit the setup.py script to look for the unixODBC from your custom location by adding something like

settings['include_dirs'] = ['/opt/local/include']
settings['library_dirs'] = ['/opt/local/lib']

to get_compiler_settings function.

share|improve this answer
Could you elaborate a little bit? I've never really messed with setup.py and I'm not quite sure what I'm doing. – matrix10657 Oct 25 '11 at 13:50
Assuming you are using pyodbc 2.1.11, add the rows I mentioned below line number 142. Just make sure the paths point to your custom installation directories. – eclaird Oct 25 '11 at 14:39

The problem is possibly because its looking in the global ini file. You can set the location it looks for the odbc.ini and odbcinst.ini files by defining ODBCSYSINI=/path/to/location/of/inifiles

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.