Python怎么连接oracle数据库
1、下载cx_Oracle模块
pip install cx_Oracle
2、编写Python代码
import cx_Oracle #引用模块cx_Oracle #conn=cx_Oracle.connect(‘用户名/密码@主机ip地址:端口号/Service Name(SID)') conn=cx_Oracle.connect('truck/******@10.74.**.**:****/****') #连接数据库 c=conn.cursor() #获取cursor x=c.execute('select sysdate from dual') #使用cursor进行各种操作 x.fetchone() c.close() #关闭cursor conn.close() #关闭连接
正确输入参数之后,数据库连接成功
3、Python连接Oracle如果有中文,可能会出乱码,可通过以下方法解决
import os os.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8'
同时,在Python脚本中,添加一行代码
# -*- coding: utf-8 -*-
更多技术请关注Python视频教程。