安装模块
使用第三方模块 `cx_Oracle`
pip install cx_Oracle
连接方式
import cx_Oracle as cx#第一种con = cx.connect('root', 'root123', '127.0.0.1:1521/orcl')#第二种con = cx.connect('root/root123@127.0.0.1:1521/orcl')#第三种dsn = cx.makedsn('127.0.0.1', '1521', 'orcl')connection = cx.connect('root', 'root123', dsn)
简单使用
# -*- coding: utf-8 -*-import cx_Oracle as cx #导入模块con = cx.connect('root', 'root123', '127.0.0.1:1521/ORCL') #创建连接cursor = con.cursor() #创建游标cursor.execute("select * from TDER where ID='28'") #执行sql语句data = cursor.fetchone() #获取一条数据print(data) #打印数据cursor.close() #关闭游标con.close() #关闭数据库连接
oracle数据库的操作和mysql的pymysql操作基本相同,可以参考
windows下使用注意
windows下是使用需要安装`Instant Client`
1) 下载 Instant Client
地址:
2) 解压到一个目录,并添加到环境变量
其他系统下使用也需要安装这个工具,具体可以查看此文档:
cx_Oracle官网: