我正在使用以下代码执行 osql 命令,然后获取其输出(如受影响的 2 行等),但它永远不会完成。请让我知道我错过了什么。
string sqlFilePath = Helper.GetFilePath(sqlFileName, Environment.CurrentDirectory);
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.Arguments = @"osql -E -S @Server -d @Database -T -n -i ""@SqlFile"""
.Replace("@Server", ConfigurationManager.AppSettings["Server"])
.Replace("@Database", Path.GetFileNameWithoutExtension(DB))
.Replace("@SqlFile", sqlFilePath);
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();