python 2.7とcx_oracle(Windows x86インストーラー(Oracle 10g、Python 2.7))を使用していて、次の簡単な例を機能させるのに時間がかかります。
import cx_Oracle
connection = cx_Oracle.connect('user/pass@someserver:port')
cursor = connection.cursor()
cursor.execute('select sysdate from dual')
for row in cursor:
print row
connection.close()
エラーメッセージ:
Traceback (most recent call last):
File "C:\ORACON.py", line 1, in <module>
import cx_Oracle
ImportError: DLL load failed: The specified module could not be found.
今のところ、私がしたことは次のとおりです。
1)cx_oracleバイナリをインストールしました。
2)Oracle Webサイトからinstantclient_10_2をダウンロードし、パスを環境にエクスポートしました。
誰が私が欠けているものを知っていますか?
これを読んでいただきありがとうございます。