Python连接Oracle的方法可以使用cx_Oracle模块。
以下是一个Python连接Oracle数据库的示例代码:
import cx_Oracle
# 创建连接
connection = cx_Oracle.connect('username', 'password', 'host:port/service_name')
# 创建游标
cursor = connection.cursor()
# 执行SQL查询
cursor.execute('SELECT * FROM table_name')
# 获取查询结果
result = cursor.fetchall()
# 打印查询结果
for row in result:
print(row)
# 关闭游标和连接
cursor.close()
connection.close()
请确保已经安装了cx_Oracle模块,并将示例代码中的username
、password
、host:port/service_name
和table_name
替换为实际的数据库信息和查询语句。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: oracle document有什么特点