What steps will reproduce the problem? 1. Install libodbc.so and the drivers in /usr/local/lib 2. Try to use pypyodbc 3. See the error
What is the expected output? What do you see instead? Error: it cannot load the library
What version of the product are you using? On what operating system? pypyodbc 1.1.1, linux
Please provide any additional information below.
I looked at the portion of the code that deals with loading the library. It uses ctypes.util.find_library function. According to the manual http://docs.python.org/3/library/ctypes.html (and I verified it), on Linux it returns only the file name of the library, but not the full path. So it is pretty much useless, the library will not load this way. The workaround is: set LD_LIBRARY_PATH properly before running the program . This will also help to load the drivers.
Here is my suggestion: simplify that piece of code, do only the LoadLibrary call. If it fails, just print error message and suggest to the user to set LD_LIBRARY_PATH.
Comment #1
Posted on Jul 6, 2013 by Helpful CamelThanks, Error messages have been updated per the suggestion:
raise OdbcNoLibrary('ODBC Library is not found. Is LD_LIBRARY_PATH set?')
Updated in GitHub: https://github.com/jiangwen365/pypyodbc/blob/master/pypyodbc.py
Status: Fixed
Labels:
Type-Defect
Priority-Medium