Python环境,Oracle client版本,系统
python 3.7 64位 , Oracle - OraClient11g_home1 64位 , 系统 windows 7
cx_Oracle 安装
cx_Oracle不能直接用pip安装,这样会导致版本不符,要根据自己的python版本和Oracle client版本安装
Python一个官方网站PyPI,上面有丰富的模块。cx_Oracle就可以在PyPI中下载。
打开PyPI的网址 https://pypi.python.org/pypi,在里面搜索cx_Oracle,即可找到该模块
点击Download files 下载适合自己的 whl 文件,
安装这个得先在cmd下输入:pip install wheel , 先安装 wheel , 安装完毕 , 还是在cmd里,用dos命令找到cx_Oracle下载位置。
安装好wheel之后,用如下命令来安装cx_Oracle,首先要在dos命令框中进入安装包所在目录,
命令:pip install cx_Oracle-6.4.1-cp37-cp37m-win32.whl,其中“cx_Oracle-6.4.1-cp37-cp37m-win32.whl”是文件名
之后就可以写python脚本,操作Oracle数据库了
实例 :
import cx_Oracle try: #连接数据库,下面括号里内容根据自己实际情况填写 conn = cx_Oracle.connect(‘用户名/密码@IP:端口号/SERVICE_NAME‘) # 使用cursor()方法获取操作游标 cursor = conn.cursor() #使用execute方法执行SQL语句 cursor.execute(‘Select * from tablename‘) #使用fetchone()方法获取一条数据 #data=cursor.fetchone() #获取部分数据,8条 #many_data=cursor.fetchmany(8) #获取所有数据 all_data=cursor.fetchall() print (all_data) db.close() except Exception as e: print(e)
友情链接: https://blog.csdn.net/zhu940923/article/details/81172968