python中的远程Oracle数据库连接

时间:2018-05-17 04:44:54

标签: database oracle python-db-api

我想使用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不同的东西?

0 个答案:

没有答案