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