cx_Oracle makes subprocess give OSError
- by Shrikant Sharat
I am trying to use the cx_Oracle module with python 2.6.6 on ubuntu Maverick, with Oracle 11gR2 Enterprise edition.
I am able to connect to my oracle db just fine, but once I do that, the subprocess module does not work anymore. Here is an iPython session that reproduces the problem...
In [1]: import subprocess as sp, cx_Oracle as dbh
In [2]:…