python连接oracle时需要下载cx_Oracle库,
使用pycharm,下载时注意使用在File | Settings | Project: workspace | Project Interpreter中进行下载,
直接使用pip下载时很可能会报错。
import cx_Oracle as cx
con = cx.connect(‘root‘, ‘root123‘, ‘127.0.0.1:1521/ORCL‘) #创建连接
cursor = con.cursor() #创建游标
cursor.execute("select * from dual") #执行sql语句
data = cursor.fetchone() #获取一条数据
print(data) #打印数据
cursor.close() #关闭游标
con.close() #关闭数据库连接