Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

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

I am trying to use pycharm(3.3) to access my Oracle SQL(11.2.0) using the below codes but getting error with below details.

Code used:

import cx_Oracle

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

Error received

cx_Oracle.DatabaseError: DPI-1050: Oracle Client library must be at version 11.2 or higher
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I had an issue very similar to yours. I was able to solve it by using a different connection method:

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)

See http://cx-oracle.readthedocs.io/en/latest/module.html for more information


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...