共计 491 个字符,预计需要花费 2 分钟才能阅读完成。
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
替换为实际的数据库信息和查询语句。
丸趣 TV 网 – 提供最优质的资源集合!
正文完