我想使用python连接到远程oracle db。 试图使用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 db?或者我应该使用与cx_Oracle不同的东西?