我想使用 python 连接到远程 oracle 数据库。尝试使用 cx_Oracle。
这是我的代码:
import cx_Oracle
adr = 'server_addres'
uid = 'user_id'
pwd = 'pwd'
port = 'port'
cx_Oracle.connect(uid + "/" + pwd + "@" + adr)
执行后,我收到错误:
cx_Oracle.DatabaseError: ORA-12154: TNS: could not resolve the connect identifier specified
如何连接到我的远程 oracle 数据库?或者也许我应该使用与 cx_Oracle 不同的东西?