> yeah, i was able to find that exact thing yesterday, and it works and i am so > happy. now i have one more problem, i cnat get oracle-cx to work. it says > that "no software installation was found" or something like that. i have the > python-mysql working but i cant seem to get the oracle database connector to > work. got anny suggestions? im running a linux platform with Ubuntu.
Hi, cx_Oracle needs Oracle client installed on the system to work. You can get one for Ubuntu from http://www.oracle.com/technology/tech/oci/instantclient/index.html (Basic will work just fine). Upon downloading, just unpack it somewhere on your system where all users can read the files and set LD_LIBRARY_PATH environment variable to point to that dir. So, I have the following line in my /etc/profile: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/oracle/instantclient_11_2 This should do the job for you. Cheers Jirka -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.