gpt4 book ai didi

python-3.x - 在 Python 中连接 OracleDB

转载 作者:行者123 更新时间:2023-12-05 03:11:05 36 4
gpt4 key购买 nike

我需要连接 Oracle 数据库并在 Python 中运行脚本,但不确定如何操作。我目前使用 Oracle SQL Developer 来运行我的查询。请帮助,附加的屏幕截图包含来自 Oracle SQL Developer 的连接详细信息。 enter image description here

最佳答案

在 oracle 网站上有一个很好的教程,对我帮助很大:Tutorial: Using Python with Oracle Database 11g .

我必须导入 cx_Oracle library然后我编写了以下代码:

import cx_Oracle

connection = cx_Oracle.connect('username/password@IP:Port/DatabaseName')
cur = connection.cursor()
cur.execute('my query')
for result in cur:
print(result)
cur.close()
connection.close()

关于python-3.x - 在 Python 中连接 OracleDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38130422/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com