python连接oracle

python连接oracle时需要下载cx_Oracle库,

使用pycharm,下载时注意使用在File | Settings | Project: workspace | Project Interpreter中进行下载,
直接使用pip下载时很可能会报错。

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

python连接oracle

上一篇:【VC】Dialog 窗体随意切割子窗体。


下一篇:我的学习笔记_Windows_HOOK编程 2009-12-03 11:19