문제

Right I have Python 2.6.2 installed on my machine, I wish to access an Oracle 10g (10.2.0.1.0 to be precise) instance on the same network (not local machine)

I've installed the cx_Oracle module v5.0.4 from

http://prdownloads.sourceforge.net/cx-oracle/cx_Oracle-5.0.4-10g.win32-py2.6.msi?download

However if I load the python interpreter this is what I get when I try to import cx_Oracle

>>> import cx_Oracle
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: DLL load failed: The specified module could not be found.

Any ideas what I can do to fix this?

Paul

도움이 되었습니까?

해결책

Ok it seems I needed to install the client version of oracle 10g. It's all fixed now :o)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top