python连接oracle记录
要在Python中连接Oracle数据库并查询记录,你可以使用cx_Oracle
库。首先,确保你已经安装了cx_Oracle
。如果没有安装,可以通过pip安装:
pip install cx_Oracle
以下是一个简单的例子,演示如何连接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数据库的实际信息。这段代码将连接到Oracle数据库,执行一个查询并打印出结果。记得在完成操作后关闭游标和连接,以释放资源。
评论已关闭