在sql execute powershell上启用详细程度诊断

时间:2014-02-12 14:22:43

标签: powershell

我有连接到db的脚本。我需要获得有关执行脚本的技术信息。或者当我的sql srcipt存在错误时,我看到的信息很少。但我需要错误的细节。如何获得更多详细信息?

    $connection = New-Object System.Data.SqlClient.SqlConnection
    $connection.ConnectionString = $connectionString
    $connection.Open()
    $query = "SELECT * FROM Animal"
    $command = $connection.CreateCommand()
    $command.CommandText = $query
    $result = $command.ExecuteReader()
    $table = new-object “System.Data.DataTable”
    $table.Load($result)
    $table
            //how get info
    $connection.Close()

1 个答案:

答案 0 :(得分:0)

代码执行后运行Error[0] | fl -Force以获取(最后)错误的详细信息。