Mac python3.6 利用cx_Oracle 连接和操作Oracle数据库

半世苍凉 提交于 2019-12-02 23:45:14

首先要用cx_Oracle访问远程oralce服务,需要安装oracle客户端 instantclient 具体操作可以看我例外一篇文章”Mac OS 安装配置 instant client

1. 安装cx_Oracle

pip/pip3 install cx_Oracle

我这里是python3和python2 双环境,所以使用pip3 安装到python3环境下。

2. 使用

不多说直接上代码:

import cx_Oracle #引入模块

#查询
conn = cx_Oracle.connect('user/password@ip:port/数据库服务名称') #获取连接
cursor = conn.cursor() # 获取cursor
cursor.execute('SELECT * FROM TBL_USER') # 执行操作
one = cursor.fetchone() #获取返回信息
print('name:%s' % one) #打印信息
cursor.close() #关闭cursor
conn.close() # 关闭连接

#插入
cursor.execute('INSERT INTO TBL_USER(name,password) VALUES ("name","password")')
one = cursor.fetchone()
cursor.close()
conn.commit()
conn.close()

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!