无法连接到托管在Oracle Cloud上的数据库:自治数据库(仓库)从python
from sqlalchemy import create_engine
user = 'admin'
password = '****'
tns = <string from the tnsnames.ora file>
engine = create_engine('oracle+cx_oracle://{0}:{1}@{2}'.format(user, password, tns))
con = engine.connect()
需要使用python访问oracle数据库中的表和数据。
1条答案
按热度按时间8ftvxx2r1#
您需要使用Oracle Cloud中ACL选项中的“添加我的地址”将IP地址添加到ACL列表中。
enter image description here