Como posso capturar as Exception do WITH em Python

问题描述 投票:0回答:0

Se a conexão falha neste caso gostaria de receber uma mensagem.

como posso fazer para capturar o erro real desta exception sem usar try exception?

with conn.cursor() as cur:
clientes = cur.execute("SELECT * FROM cliente order by nome").fetchall()

    for c in clientes:
      print(f"Nome: {c[1]} {c[2]}")  
python python-3.x exception try-catch with-statement
© www.soinside.com 2019 - 2024. All rights reserved.