[cx-oracle-users] Re: DLL Error - python 2.4, Oracle 8.1.7, cx_Oracle 4.1.2, Win XP SP2 (JP Glutting
Brought to you by:
atuining
From: Henning v. B. <H.v...@t-...> - 2006-02-08 12:51:08
|
Please try the following on the python command line: import os for n in sorted(os.environ.keys()): print "%s=3D%s" % (n, os.environ[n]) import cx_oracle Then take a look at the values of PATH and ORACLE_HOME. This is to see which version of oci.dll python is actually trying to load. The %ORACLE_HOME%\bin directory should be the first in PATH. Henning >=20 > And I did the import from the command line. I am not sure=20 > what you mean by > "a window" showing the problem, but here is the traceback: >=20 > >>> import cx_Oracle > Traceback (most recent call last): > File "<interactive input>", line 1, in ? > ImportError: DLL load failed: No se encontr=3DF3 el proceso=20 > especificado. > >>> >=20 > Cheers, > JP |