oracle 轻量级python连接驱动
实际上oracle python 驱动自从去年5月左右就提供了thin 模式,对于通过python 连接oracle 的同学是特别的,轻量方便
新版本oracle 驱动支持模式
从下图也可以看出来,支持可选的oracle client 模式
参考使用
- oracle 部署(docker-compose)
version: '3'
services:
oracle:
image: container-registry.oracle.com/database/express:21.3.0-xe
ports:
- 1521:1521
volumes:
- ./data:/opt/oracle/oradata
environment:
- ORACLE_PWD=Ccda5662E
- ORACLE_CHARACTERSET=AL32UTF8
- ORACLE_EDITION=xe
- ORACLE_SID=XE
- python 代码连接
import oracledb
import os
un = os.environ.get('PYTHON_USERNAME')
pw = os.environ.get('PYTHON_PASSWORD')
cs = os.environ.get('PYTHON_CONNECTSTRING')
with oracledb.connect(user=un, password=pw, dsn=cs) as connection:
with connection.cursor() as cursor:
sql = """select 'dalong' from dual"""
for r in cursor.execute(sql):
print(r)
- 运行效果
需要配置环境变量
格式
export PYTHON_USERNAME=system
export PYTHON_PASSWORD=Ccda5662E
export PYTHON_CONNECTSTRING=localhost/xe
说明
新版本驱动默认就是使用的thin 模式,
参考资料
https://python-oracledb.readthedocs.io/en/latest/user_guide/installation.html
https://github.com/oracle/python-oracledb
https://peps.python.org/pep-0249/
https://oracle.github.io/python-oracledb/samples/tutorial/Python-and-Oracle-Database-The-New-Wave-of-Scripting.html