0

我编写了一个 C# 程序来执行bcp命令并将数据从.txt文件传输到 SQL Server 表中。当我使用命令行执行命令时,它执行得很好。

当我运行下面显示的程序时,它给出了这个错误:

在 System.Diagnostics.Process.get_StandardError()
at ...StandardError 尚未重定向。

代码:

string outputfilename = @"C:\Output.txt";
string cmdExe = "MyDB.dbo.a in outputfilename -c -T -S servername\\DEV -U readonly -P readonly -F2";
 System.Diagnostics.Process p = new System.Diagnostics.Process();
 p.StartInfo.WorkingDirectory = @"C:\\";
 p.StartInfo.UseShellExecute = false;
 p.StartInfo.RedirectStandardOutput = true;
 p.StartInfo.CreateNoWindow = true;
 p.StartInfo.FileName = "BCP";


 p.StartInfo.Arguments = cmdExe;

 try
 {
     p.Start();
     p.BeginOutputReadLine();

     StreamReader myStreamReader = p.StandardError;
     // Read the standard error of net.exe and write it on to console.
    Console.WriteLine(myStreamReader.ReadLine());
 }
 catch (Exception e)
 {
     Console.WriteLine(e.StackTrace.ToString());
     Console.WriteLine(e.Message);
     Console.ReadLine();
 }
 if (p.WaitForExit(100))
 {
     // Process completed. Check process.ExitCode here.
     p.StandardOutput.ReadToEnd();
 }
4

1 回答 1

1

添加:

p.StartInfo.RedirectStandardError = true;

如果您想p.StandardError稍后在代码中访问,这是必需的。

于 2013-10-17T19:38:24.997 回答