SqlExecutionException.Commands プロパティ

定義

例外の発生時に実行されていた SQL コマンドを取得します。

public:
 property System::String ^ Commands { System::String ^ get(); };
public string Commands { get; }
member this.Commands : string
Public ReadOnly Property Commands As String

プロパティ値

例外の発生時に実行されていた SQL コマンド。

次のコード例は、例外の種類の プロパティに Commands アクセスする方法を SqlExecutionException 示しています。 このコード例は、SqlServices クラスのために提供されている大規模な例の一部です。

Console.WriteLine("  Commands: {0}",
    sqlExecutionException.Commands);
Console.WriteLine("  Commands: {0}", _
    sqlExecutionException.Commands)

適用対象