Oracle In Python
跳到导航
跳到搜索
Python 连接到 Oracle 数据库的驱动程序 oracledb 和 cx_Oracle 均提供了 DB API 2.0 兼容的接口。
- cx_Oracle 是一个长期存在的、成熟的驱动程序,被广泛使用。
- oracledb 是 Oracle 公司在 2022 年发布的,它是 cx_Oracle 的下一个主要版本。虽然 oracledb 是一个新名称,但它在很大程度上是基于 cx_Oracle 的代码库,并由相同的开发团队维护。cx_Oracle 仍然会得到维护(错误修复和安全更新),但新功能主要会在 oracledb 中添加。
oracledb 最重要的改进是同时支持 Thin 和 Thick 两种驱动模式,而 cx_Oracle 的 Thick 模式,意味着必须单独下载、安装和配置 Oracle 客户端库(Oracle Instant Client、Oracle 客户端或 Oracle 数据库安装其一)。
Thin 模式是以纯 Python 实现的,通过 Python 的网络套接字与 Oracle 数据库通信,大大简化了安装和部署,尤其是在容器化环境或云环境中。
python-oracledb 驱动程序的默认“精简模式”直接连接到 Oracle Database(Thin mode,另一个是 Thick mode)。可以在没有 Wallet 的情况下将 Python 应用程序连接到 Autonomous Database 实例。
- 确定 Autonomous Database 实例已启用 TLS 连接
在 Oracle Cloud Infrastructure 控制台的 “网络 ”区域中,“双向 TLS (mTLS) 验证 ”字段显示: 不需要
Mutual TLS (mTLS) authentication field shows: Not Required - 获取 Autonomous Database 服务连接字符串以访问数据库(dsn)
# pip3 install oracledb import oracledb as oc _conn = oracledb.connect(user=s_user, password=s_passwd, dsn=s_dsn)
# import cx_Oracle as oc # 需要单独安装 Oracle Instant Client import cx_Oracle as oc _conn = oc.connect(s_user + '/' + s_passwd + '@' + s_host + ':' + s_port + '/' + s_db)
Sample
import oracledb user = "admin" password = "your_wallet_password" dsn = """ (description= (retry_count=20)(retry_delay=3) (address=(protocol=tcps)(port=1522)(host=adb.uk-london-1.oraclecloud.com)) (connect_data=(service_name=8192f_bidb_medium.adb.oraclecloud.com)) (security=(ssl_server_dn_match=yes)) ) """ try: # mode=oracledb.THIN with oracledb.connect(user, password, dsn, mode=oracledb.THIN) as connection: with connection.cursor() as cursor: cursor.execute("SELECT * FROM test") for row in cursor: print(row) except oracledb.DatabaseError as e: print(f"Database error: {e}")