Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to execute multiple commands without create a new process each time. Basically, I want to start the DOS command shell, switch to the MySQL command shell, and execute a command. Here's how I am calling the procedure (also below). Also, how do I handle the "\"'s in the command?

ExecuteCommand("mysql --user=root --password=sa casemanager", 100, false);

ExecuteCommand(@"\. " + Environment.CurrentDirectory + @"\MySQL\CaseManager.sql", 100, true);

private void ExecuteCommand(string Command, int Timeout, Boolean closeProcess)
{
    ProcessStartInfo ProcessInfo;
    Process Process;

    ProcessInfo = new ProcessStartInfo("cmd.exe", "/C " + Command);
    ProcessInfo.CreateNoWindow = false;
    ProcessInfo.UseShellExecute = false;
    Process = Process.Start(ProcessInfo);
    Process.WaitForExit(Timeout);

    if (closeProcess == true) { Process.Close(); }
}
share|improve this question

7 Answers

You can redirect standard input and use a StreamWriter to write to it:

        Process p = new Process();
        ProcessStartInfo info = new ProcessStartInfo();
        info.FileName = "cmd.exe";
        info.RedirectStandardInput = true;
        info.UseShellExecute = false;

        p.StartInfo = info;
        p.Start();

        using (StreamWriter sw = p.StandardInput)
        {
            if (sw.BaseStream.CanWrite)
            {
                sw.WriteLine("mysql -u root -p");
                sw.WriteLine("mypassword");
                sw.WriteLine("use mydb;");
            }
        }
share|improve this answer

Couldn't you just write all the commands into a .cmd file in the temp folder and then execute that file?

share|improve this answer

A command-line process such cmd.exe or mysql.exe will usually read (and execute) whatever you (the user) type in (at the keyboard).

To mimic that, I think you want to use the RedirectStandardInput property: http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardinput.aspx

share|improve this answer

You could also tell MySQL to execute the commands in the given file, like so:

mysql --user=root --password=sa casemanager < CaseManager.sql
share|improve this answer

Thanks guys. So either this call OR the code below should work right? It's still failing and I think it is because of the "\"'s in the file path.

ExecuteCommand("mysql --user=root --password=sa casemanager < " + Environment.CurrentDirectory + @"\MySQL\CaseManager.sql", 100, false);

OR....

 Process p = new Process();
 ProcessStartInfo info = new ProcessStartInfo();
 info.CreateNoWindow = false;
 info.FileName = "cmd.exe";
 info.RedirectStandardInput = true;
 info.UseShellExecute = false;

 p.StartInfo = info;
 p.Start();

 StreamWriter sw = p.StandardInput;

 if (sw.BaseStream.CanWrite)
    {
      sw.WriteLine("mysql -u root -p");
      sw.WriteLine("sa");
      sw.WriteLine(@"\. " + Environment.CurrentDirectory + @"\MySQL\CaseManager.sql");
     }

 sw.Close();
 p.WaitForExit();
 p.Close();
share|improve this answer
Can you change the current directory to the MySQL folder (the one containing your CaseManager.sql) script? In that case you wouldn't need to provide the absolute path, just the filename. – Ben Hoffstein Jan 13 '09 at 23:00
ProcessStartInfo pStartInfo = new ProcessStartInfo();
pStartInfo.FileName = "CMD";
pStartInfo.Arguments = @"/C mysql --user=root --password=sa casemanager && \. " + Environment.CurrentDirectory + @"\MySQL\CaseManager.sql"
pStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(pStartInfo);

The && is the way to tell the command shell that there is another command to execute.

share|improve this answer
1  
Put it in a code block Jimmy, that looks horrible! – m.t.bennett Aug 22 '12 at 0:22
&& means if the left command fails, the right one won't get executed, see support.microsoft.com/kb/279253/en-us. You can just use the single & in case that's not desired – Filip Apr 12 at 14:17
const string strCmdText = "/C command1&command2";
Process.Start("CMD.exe", strCmdText);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.