获取“cx_Oracle.DatabaseError:DPI-1050:Oracle客户端库必须为11.2或更高版本”错误

时间:2018-03-23 13:21:41

标签: python oracle11g pycharm

我正在尝试使用 pycharm(3.3)来使用以下代码访问我的 Oracle SQL(11.2.0),但收到以下详细信息时出错。

使用的代码:

import cx_Oracle

connection = cx_Oracle.connect('uname/pwd@14@server')

收到错误

cx_Oracle.DatabaseError: DPI-1050: Oracle Client library must be at version 11.2 or higher

1 个答案:

答案 0 :(得分:1)

我有一个与你非常相似的问题。我能够通过使用不同的连接方法来解决它:

my_dsn = cx_Oracle.makedsn("host",port,sid="sid")
connection = cx_Oracle.connect(user="user", password="password", dsn=my_dsn)
cursor = connection.cursor()

querystring = "SQL query"
cursor.execute(querystring)

有关详细信息,请参阅http://cx-oracle.readthedocs.io/en/latest/module.html