我正在尝试通过 python 连接到数据库。当尝试在 python 中运行代码时,我不断收到此错误:
DatabaseError: ORA-12154: TNS:could not resolve the connect identifier specified
我知道 tns 设置很好,因为我可以使用同一台计算机通过 sql Developer 连接到数据库。Python 出了什么问题。
host = '205.218.7.153'
port = '1521'
sid= 'pdevl3'
username = 'uname'
password = 'pwd'
connect_str = username + '/' + password + '@' + host + ':' + port + '/' + sid
orcl = cx_Oracle.connect(connect_str)
curs = orcl.cursor()
curs.execute(query2)
rows = curs.fetchall()
curs.close()
慕仙森
相关分类