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

windows下python连接oracle数据库

时间:2019-10-23 09:14:56      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:mit   nbsp   cx_oracle   win   python版本   fetchall   local   ges   rac   

   

python连接oracle数据库的方法,具体如下

1.首先安装cx_Oracle包
2.解压instantclient-basic-windows.x64-11.2.0.4.0.zip到c:\oracle
3.拷贝instantclient_11_2下所有.dll文件到c:\python34\Lib\site-packages\下(根据自己的python版本拷贝到相应的site-packages文件夹下)

python连接示例代码:

  

# -*- coding: utf-8 -*-
import cx_Oracle

conn=cx_Oracle.connect(‘reporter‘,‘password‘,‘localhost:1521/ORCL‘)
cursor=conn.cursor()
sql="select * from test"
cursor.execute(sql)
data=cursor.fetchall()
print(data)
cursor.close()
conn.commit()
conn.close()

  

windows下python连接oracle数据库

标签:mit   nbsp   cx_oracle   win   python版本   fetchall   local   ges   rac   

原文地址:https://www.cnblogs.com/68xi/p/11724030.html

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