python连接oracle数据库_python连接oracle数据库

安装模块

使用第三方模块 `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操作基本相同,可以参考pymysql使用

windows下使用注意

windows下是使用需要安装`Instant Client`

1) 下载 Instant Client

1199372-20180809140231791-1370596386.png

2) 解压到一个目录,并添加到环境变量

1199372-20180809140333231-1614207104.png

1199372-20180809140600892-804752333.png

其他系统下使用也需要安装这个工具,具体可以查看此文档:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值