Pycharm中Python3连接Oracle11gR2

一、环境:

系统:win10 (64位)

软件:1.Python_3.4.3 (64位)

2.instantclient-basic-windows.x64-11.2.0.4.0.zip(64位) --这个必须要安装

    官网下载地址:http://www.oracle.com/technetwork/cn/topics/winx64soft-101515-zhs.html

3.Oracle 11gR2 (64位)

 

注意!!!最好要保持Python、instantclient和Oracle位数一致(我本机安装的都是64位的)!!!

 

二、步骤:

2.1 把instantclient-basic-windows.x64-11.2.0.4.0.zip解压到某一目录并把目录配置到系统环境变量Path中

2.2 下载安装visual c++ 2005 x64和visual c++ 2013 x64,安装好后重启电脑,必须要重启一下

2.3 安装cx_Oracle: pip install cx_Oracle

 

三、测试:

 

#!/usr/bin/python3

import cx_Oracle

conn = cx_Oracle.connect('scott/hh111111@localhost/orcl')

print(conn)

 

Pycharm运行结果如下:

Pycharm中Python3连接Oracle11gR2_第1张图片

 

你可能感兴趣的:(python)