Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am querying the version of sql server using sqlcmd (from my app) and would like to display the info, say, on a rich text box, how do i go about it, here's the code:

        Process proc = new Process();
        proc.StartInfo.UseShellExecute = false;
        proc.StartInfo.RedirectStandardOutput = true;
        proc.StartInfo.FileName = "sqlcmd";
        proc.StartInfo.Arguments = @"-U sa -P somepassword -q 'SELECT @@VERSION' -S (localhost)\InstanceName";
        proc.Start();    


        StringBuilder q = new StringBuilder();
        while (!proc.HasExited)
        {
            q.Append(proc.StandardOutput.ReadToEnd());

        }
        string r = q.ToString();
        rtbCheckVersion.Text = r;
        proc.WaitForExit();
share|improve this question
1  
why are you executing the shutdown.exe program for that?? – Davide Piras May 7 '12 at 10:28
1  
What's wrong with your code? – Marco May 7 '12 at 10:30
1  
possible duplicate of How to redirect process output to System.String. Actually this question (in various variations, has been asked a couple of times. Hint: with your while (!proc.HasExited) you are over-complicating things. – Christian.K May 7 '12 at 10:31
2  
Why you are using sqlcmd, why not simply connect to DB and execute 'SELECT @@VERSION' ? – Antonio Bakula May 7 '12 at 10:31
1  
@coder16 Connecting to DB and performing the query yourself is actually much less CPU overhead than starting sqlcmd. I would say "Redirecting process output is too much work for such a simple query". – atornblad May 7 '12 at 10:38
show 3 more comments

2 Answers

since you have to execute a sql script, you could use SqlConnection and SqlCommand to get the output instead of starting a separated process.

check this answer and other answers in this question for some examples: http://stackoverflow.com/a/949933/559144

share|improve this answer
Thanks, Davide, great answear. but how do i get it right by using my technique? – coder16 May 7 '12 at 10:36

I see you don't want to use SqlConnection and SqlCommand...
I'm not sure, but it could be that your process exits before you get output.
Try this:

proc.Start();    
string s = proc.StandardOutput.ReadToEnd();
share|improve this answer
Doesn't work... – coder16 May 7 '12 at 10:41
@coder16: doesn't work means nothing: what happens? – Marco May 7 '12 at 10:42
1  
@coder16, you may also want to enable and read from StandardError in case "something" did not run as expected. – Tung May 7 '12 at 10:45
@Marco, got it: "Sqlcmd: '@@VERSION'': Unexpected argument. Enter '-?' for help.\r\n" looks like my arguments are incorrect... – coder16 May 7 '12 at 10:59

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.