0

我有一个包含 2 个项目的示例解决方案(VS 2017,C#):

  • 控制台应用程序:
    • 程序.cs
    • 脚本文件夹:
      • Aaa.ps1(参考)
    • nuget包:
      • Npgsql v4.02
      • System.Management.Automation.dll v10.0.10586
  • PowerShell 脚本项目:
    • aaa.ps1

Aaa.ps1 执行简单的 Select 查询以检索一个值并将其传递给控制台应用程序 cs 并在控制台上显示它。

class Program
    {
        static void Main(string[] args)
        {
            // get a ps file script path.
            string pathToScriptsFile = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Scripts");
            string filter = "*.ps1";
            string[] files = Directory.GetFiles(pathToScriptsFile, filter);
            string filePath = files[0];

            // read text from a ps file script.
            string scriptContent = string.Empty;
            using (StreamReader sr = new StreamReader(filePath))
            {
                scriptContent = sr.ReadToEnd();
                sr.Close();
            }

            // get dbValue from powershell script            
            using (PowerShell powerShellInstance = PowerShell.Create())
            {
                powerShellInstance.AddScript(scriptContent);

                try
                {
                    Collection<PSObject> PSOutput = powerShellInstance.Invoke();

                    foreach (PSObject outputItem in PSOutput)
                    {
                        if (outputItem != null)
                        {
                            var outputValue = outputItem.BaseObject;

                            if (outputValue.GetType() == typeof(System.Data.DataRow))
                            {
                                var dbValue = (outputValue as System.Data.DataRow).ItemArray.FirstOrDefault();
                                Console.WriteLine($"Db value is:\n{dbValue}\n");
                            }

                            Console.WriteLine($"Value form powershell script is:\n{outputItem.ToString()}\n");
                        }
                    }

                    if (!PSOutput.Any())
                    {
                        Console.WriteLine($"No Value form powershell script is:\n");
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine($"\n\n{ex}\n{ex.Message}\n{ex.InnerException}\n\n");
                }                
            }

            Console.ReadKey();
        }
    }

aaa.ps1

#
# Aaa.ps1
#

# Load Npgsql dll
Add-Type -Path ".\Npgsql.dll"

# get DB connection
function getDBConnection ($MyDBServer, $MyDBPort, $MyDBName, $MyUserId, $MyPassword) {
    $DBConnectionString = "server=$MyDBServer;port=$MyDBPort;user id=$MyUserId;password=$MyPassword;database=$MyDBName;pooling=false"
    $DBConn = New-Object Npgsql.NpgsqlConnection;
    $DBConn.ConnectionString = $DBConnectionString
    $DBConn.Open()

    return $DBConn
}

# close DB connection
function closeDBConnection ($DBConn)
{
    $DBConn.Close
}

# DB connection string details
$MyDBServer = "xxxxxxxxxxxxxxx";
$MyDBPort = yyyy;
$MyDBName = "xxxxxxxx";
$MyUserId = "xxxxxx";
$MyPassword = "";

# execute sql query
$MyDBConnection = getDBConnection $MyDBServer $MyDBPort $MyDBName $MyUserId $MyPassword
$query = "SELECT xxxxx FROM xxxxx ..."
$DBCmd = $MyDBConnection.CreateCommand()
$DBCmd.CommandText = $query
$adapter = New-Object -TypeName Npgsql.NpgsqlDataAdapter $DBCmd
$dataset = New-Object -TypeName System.Data.DataSet
$adapter.Fill($dataset)
$dataset.Tables[0]
closeDBConnection($MyDBConnection)

以上工作正常。我总是有包含 3 个项目的 PSOutput 集合和我需要从 SQL 返回的数据。

但是,当我将相同的方法应用于我的工作更大的解决方案时,它不起作用。我做了什么:

  • 使用相同的 Aaa.ps1 脚本创建了相同的 PowerShell 脚本项目
  • 将与 Program.cs 中相同的实现添加到我的 CodedUI 项目到实用程序方法中。还将相同的 nuget 包添加到 CodedUI 项目以处理 PowerShell 和 Postgres 位。

结果,我有两种不同的错误/行为:

  • 有时我得到:无法执行操作,因为运行空间未处于“打开”状态。运行空间的当前状态是“破碎”。
  • 有时 PSOutput 集合有两个始终为空的项目。

有人可以告诉我我做错了什么吗?

4

0 回答 0