【Oracle】python调取oracle数据教程
在Python中调用Oracle数据库,通常使用cx_Oracle
库。以下是一个简单的例子,展示如何使用cx_Oracle
连接Oracle数据库并执行查询。
首先,确保已经安装了cx_Oracle
库。如果没有安装,可以使用pip安装:
pip install cx_Oracle
然后,使用以下Python代码连接Oracle数据库并执行查询:
import cx_Oracle
# 设置Oracle数据源名称
dsn = cx_Oracle.makedsn('host', 'port', service_name='service_name')
# 创建数据库连接
connection = cx_Oracle.connect(user='username', password='password', dsn=dsn)
# 创建游标
cursor = connection.cursor()
# 执行SQL查询
cursor.execute("SELECT * FROM your_table")
# 获取查询结果
rows = cursor.fetchall()
# 遍历并打印结果
for row in rows:
print(row)
# 关闭游标和连接
cursor.close()
connection.close()
请替换host
, port
, service_name
, username
, password
和your_table
为你的Oracle数据库实例的相应信息。
评论已关闭