cx_Oracle.DatabaseError: ORA-28759: failure to open file
Posted 秒年度
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cx_Oracle.DatabaseError: ORA-28759: failure to open file相关的知识,希望对你有一定的参考价值。
找了好久这个问题,有人说是tcps的问题,需要自己生成证书什么的,后来才发现原来是 钱包文件路径 的问题,钱包文件解压后必须放在instantclien/network/admin
下,在Windows和Linux平台下都测试了,确实是路径导致的。
剩下的按照文档来就可以了,环境变量什么的,都很简单,Oracle Instant Client
下载个light
版本的就可以了,解压后创建network/admin
目录,把解压好的文件,就是那些tnsnames.ora
什么的放进去
贴一下可以正常运行的环境:
cx-Oracle 8.1.0
Python3.6.8
Oracle Instant Client 19.11 light
在Windows下如果不想设置环境变量,可以使用cx_Oracle.init_oracle_client
手动指定:
#coding:utf-8
\'\'\'
@version: python3.6
@author: ‘eric‘
@license: Apache Licence
@contact: steinven@qq.com
@software: PyCharm
@file: tt.py
@time: 2021/5/17 17:59
\'\'\'
import cx_Oracle
DB = "admin_high"
DB_USER = "admin"
DB_PASSWORD = "YOUR PASSWORD"
cx_Oracle.init_oracle_client(lib_dir=r\'C:\\oracle\\instantclient_19_11\',config_dir=r\'C:\\oracle\\instantclient_19_11\\network\\admin\')
connection = cx_Oracle.connect(DB_USER, DB_PASSWORD, DB)
print(connection.version)
以上是关于cx_Oracle.DatabaseError: ORA-28759: failure to open file的主要内容,如果未能解决你的问题,请参考以下文章
python 3.6 cx_Oracle.DatabaseError: DPI-1050
(cx_Oracle.DatabaseError) DPI-1047: Cannot locate a 64-bit Oracle Client library:
python用cx_Oracle连接数据库,出现错误cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client li
cx_Oracle.DatabaseError: ORA-28759: failure to open file
Linux下使用Python连接Oracle 报cx_Oracle.DatabaseError: DPI-1047: 64-bit Oracle Client library cannot be lo
已经配好64位的oracle instantclient,依旧Python报错cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Ora