win7用python连接oracle

module cx_Oracle 安装(win7)

收藏者: luoyzjh1
转自:  http://blog.csdn.net/fatux/article/details/6749697

cx_Oracle 下载地址 

http://cx-oracle.sourceforge.net/

选择合适的版本安装。 安装好后

view plain
  1. >>> import cx_Oracle  
  2.   
  3. Traceback (most recent call last):  
  4.   File "<pyshell#1>", line 1in <module>  
  5.     import cx_Oracle  
  6. ImportError: DLL load failed: 找不到指定的模块。  


有两个解决方案:

1 安装oracle客户端

2 将相关的dll拷贝到

C:\Windows\System32

win7用python连接oracle_第1张图片

再试一下

view plain
  1. >>> import cx_Oracle  
  2. >>>   


大功告成!

 

你可能感兴趣的:(win7用python连接oracle)