windows下python连接oracle数据库

时间:2022-04-08 19:34:41

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连接示例代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
# -*- 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()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。