Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボタンのクリック時に実行される SQL 更新コマンドがあります。try/catch 関数を実行し、catch 関数を使用して、スローされる可能性のあるエラーをテキスト ボックスに追加したいと考えています。これは可能ですか?ありがとう!
catch (Exception ex) { tb.Text += ex.Message; }
読み取り専用のフィードバックには、通常 TextBlock を使用します
そして、SQL例外だけが必要な場合
catch (SqlException ex)