码迷,mamicode.com
首页 > 数据库 > 详细

Python 安装 cx_Oracle

时间:2014-11-21 18:59:42      阅读:697      评论:0      收藏:0      [点我收藏+]

标签:cx_oracle python oracle

说明: 本文档内容基于Python 2.7.8版本进行操作。


一、下载cx_Oracle

    下载地址: https://pypi.python.org/pypi/cx_Oracle/5.1.3

bubuko.com,布布扣


二、下载Oracle客户端驱动(Oracle Instant Client Basic)

    下载地址: http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html

bubuko.com,布布扣


三、Windows下载及安装

    3.1 选择下载文件

bubuko.com,布布扣


    3.2 点击下载文件后,会进入到登陆页面,登陆后就可以下载了.

bubuko.com,布布扣

    3.3 输入用户名密码后,点击登陆按钮,则会弹出文件下载框。

bubuko.com,布布扣

    

    3.4 双击打开文件,全部都是下一步,完成安装。

bubuko.com,布布扣


    3.5 解压文件

bubuko.com,布布扣


    3.6 进入到解压目录中

bubuko.com,布布扣


    3.7 选中全部文件复制,然后粘贴到C:\Python27\Lib\site-packages\目录下

bubuko.com,布布扣


    3.8 完成上述四个步骤之后,打开Pycharm会出现cx_Oracle模块

bubuko.com,布布扣

    3.9 尝试编写几行代码来连接Oracle 10g数据库,看是否能正常工作.

    第一种连接方法 cx_Oracle.connect()

bubuko.com,布布扣

    第二种连接方法 cx_Oracle.makedsn()

bubuko.com,布布扣



四、Linux下载及安装

    4.1 下载Oracle Instant Client BasicSDK

bubuko.com,布布扣

    4.2 安装客户端和SDK

[root@localhost ~]# mkdir /opt/oracle/
[root@localhost ~]# unzip instantclient-basic-linux.x64-11.2.0.4.0.zip -d /opt/oracle/
[root@localhost ~]# unzip instantclient-sdk-linux.x64-11.2.0.4.0.zip -d /opt/oracle/
 
# 设置环境变量(注意: 这种环境变量的定义方式,只能是当本机没有Oracle数据库时,才能定义ORACLE_HOME,若已经安装了ORACLE,则不能随便乱更改ORACLE_HOME)。
[root@localhost ~]# export ORACLE_HOME=/opt/oracle/instantclient_11_2
[root@localhost ~]# 
echo "export ORACLE_HOME=/opt/oracle/instantclient_11_2" >> /etc/profile

# 创建一个动态链接, 这步操作如果不做,则会导致整个驱动无法完成编译.
[root@localhost ~]# 
ln -s /opt/oracle/instantclient_11_2/libclntsh.so.11.1 /opt/oracle/instantclient_11_2/libclntsh.so
# 将动态库文件复制或软链到/lib64/目录下,否则安装完成后,调用cx_Oracle会报错.
[root@localhost ~]# 
find $ORACLE_HOME -type f | grep "\.so" | xargs cp --target-directory=/lib64/
 
# 开始编译并安装cx_Oracle
[root@localhost ~]# tar zxvf cx_Oracle-5.1.3.tar.gz
[root@localhost ~]# cd cx_Oracle-5.1.3
[root@localhost cx_Oracle-5.1.3]# /usr/local/Python-2.7.8/bin/python setup.py build
[root@localhost cx_Oracle-5.1.3]# /usr/local/Python-2.7.8/bin/python setup.py install


    4.3 编写一个Oracle连接程序

[root@localhost cx_Oracle-5.1.3]# cd ~/
[root@localhost ~]# vim connect_oracle.py
#!/bin/env python
# -.- coding:utf-8 -.-
 
import cx_Oracle as cx
 
con = cx.connect("vids/vids123@192.168.3.235:1521/vids")
print con.version
con.close()
 
[root@localhost ~]# /usr/local/Python-2.7.8/bin/python connect_oracle.py
10.2.0.1.0


本文出自 “软件测试” 博客,请务必保留此出处http://9614554.blog.51cto.com/9604554/1580992

Python 安装 cx_Oracle

标签:cx_oracle python oracle

原文地址:http://9614554.blog.51cto.com/9604554/1580992

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!