SqlExecutionException.SqlFile 属性

定义

获取异常发生时包含正在运行的 SQL 命令的文件的路径和名称。

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

属性值

String

异常发生时包含正在运行的 SQL 命令的文件的路径和名称。

示例

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

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

适用于