Python怎么连接oracle数据库
1、下载cx_Oracle模块
pipinstallcx_Oracle
2、编写Python代码
importcx_Oracle#引用模块cx_Oracle #conn=cx_Oracle.connect(‘用户名/密码@主机ip地址:端口号/ServiceName(SID)') conn=cx_Oracle.connect('truck/******@10.74.**.**:****/****')#连接数据库 c=conn.cursor()#获取cursor x=c.execute('selectsysdatefromdual')#使用cursor进行各种操作 x.fetchone() c.close()#关闭cursor conn.close()#关闭连接
正确输入参数之后,数据库连接成功
3、Python连接Oracle如果有中文,可能会出乱码,可通过以下方法解决
importos os.environ['NLS_LANG']='SIMPLIFIEDCHINESE_CHINA.UTF8'
同时,在Python脚本中,添加一行代码
#-*-coding:utf-8-*-原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容