我已经在 OCI 中创建了自治数据仓库,并尝试按照此文档从 OCI 数据科学笔记本访问它Connect Python without a Wallet
我还安装了 Oracle Instant Client 19.6 并添加了上述文档中提到的符号链接,但脚本正在寻找钱包文件并引发错误:
ORA-28759: failure to open file
代码:
import cx_Oracle as cx
import sys
dsn = """(description= (retry_count=15)(retry_delay=3)(address=(protocol=tcps)
<my-connection-string> C=US")))"""
try:
con = cx.connect(user="<my-user>", password="<my-password>", dsn=dsn, encoding="UTF-8")
print("Database version:", con.version)
except Exception as err:
print(err)
sys.exit(1)
是的,我检查了其他相关问题,但没有运气!提前致谢。