如果第一次或第二次连接尝试在Python中失败,请尝试oracle连接

时间:2018-09-30 04:43:41

标签: python-2.7 cx-oracle

import cx_Oracle

dsn_tns = cx_Oracle.makedsn(ip, port,sid)

for c in range(1,4):

try:

    db = cx_Oracle.connect(username,password, dsn_tns)

    break

except cx_Oracle.DatabaseError as e:

    continue

**嗨,如果第一次尝试连接失败(引发错误异常),我可以使用上面的代码尝试第二次或第三次连接吗?

0 个答案:

没有答案