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

属性值

String

异常发生时正在运行的 SQL 命令。

示例

下面的代码示例演示如何访问 Commands 异常类型的属性 SqlExecutionException 。 此代码示例是为类提供的大型示例的 SqlServices 一部分。

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

适用于