Home > Database > Mysql Tutorial > Python操作Oracle数据库环境配置

Python操作Oracle数据库环境配置

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:50:23
Original
1197 people have browsed it

1. 下载安装cx_Oracle安装包 Python操作Oracle数据库,首先需要安装cx_Oracle包,下载地址如下: http://cx-oracle.sourceforg

1. 下载安装cx_Oracle安装包

Python操作Oracle数据库,首先需要安装cx_Oracle包,,下载地址如下: 
   

本系统采用的是CentOS5.x系列的操作系统,python版本是2.4,于是下载支持python2.4版本的安装包。

2. 下载oracle客户端,是oracle官方网站下载。

下载对应linux x64版本下对应oracle版本的安装包。 
oracle-instantclient-basic-10.2.0.5-1.x86_64.rpm

Python操作Oracle数据库环境配置

3. 配置系统环境变量

# vi .bash_profile

export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/oracle/10.2.0.5/client64/lib

# source .bash_profile

Python操作Oracle数据库环境配置

4. 测试python连接oracle

#!/usr/bin/python
import cx_Oracle
conn = cx_Oracle.connect('system/oracle@192.168.1.101:1521/orcl')
print conn.version
cursor = conn.cursor()
conn.close()

执行结果如下:

《Python核心编程 第二版》.(Wesley J. Chun ).[高清PDF中文版]

《Python开发技术详解》.( 周伟,宗杰).[高清PDF扫描版+随书视频+代码]

Python脚本获取Linux系统信息

在Ubuntu下用Python搭建桌面算法交易研究环境

Python 的详细介绍:请点这里
Python 的下载地址:请点这里

本文永久更新链接地址:

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template