网络编程
位置:首页>> 网络编程>> Python编程>> 教你使用Python连接oracle

教你使用Python连接oracle

作者:qq_41858657  发布时间:2023-09-11 01:38:54 

标签:Python,连接,oracle,数据库

一、下载instant client

1.附链接:http://www.oracle.com/technetwork/topics/winx64soft-089540.html

提示:需要有oracle的账号才能下载嗷!

教你使用Python连接oracle

2.解压到某一位置并配置环境变量

教你使用Python连接oracle

二、cmd加载包

写在cmd里加载cx_Oracle包


pip install cx_Oracle

教你使用Python连接oracle

三、python连接oracle数据库


import cx_Oracle as cx
con = cx.connect('用户名', '密码', '127.0.0.1:1521/orcl')
\\
127.0.0.1:改为数据库域名
1521为连接数据库端口号
orcl为所连接的数据库
\\

如图所示:

教你使用Python连接oracle

四、解决监听问题(无此问题可跳过)

如果能顺利连接,那就没事了,请跳过下面一段,刻意进行下一步操作,如果有途中类似报错,需要配置几个文件,这里一并贴出:

写在前面:本人对这几个配置文件的套路也不是很熟,若有问题请谅解并另寻他解

教你使用Python连接oracle

1.listener.ora

教你使用Python连接oracle

2.tnsnames.ora

教你使用Python连接oracle

3.sqlnet.ora

教你使用Python连接oracle

五、oracle数据库数据抽取调用

接下来进行数据的抽取与调用:


import cx_Oracle as cx      #导入模块
con = cx.connect('root', 'root123', '127.0.0.1:1521/ORCL')  #创建连接
cursor = con.cursor()       #创建游标
cursor.execute("select * from ORCL where ID='28'")  #执行sql语句
data = cursor.fetchone()        #获取一条数据
print(data)     #打印数据
cursor.close()  #关闭游标
con.close()     #关闭数据库连接

教你使用Python连接oracle

okk啦!!

来源:https://blog.csdn.net/qq_41858657/article/details/116902478

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com