vote up 0 vote down star

Can I use two command object with one open connection in one procedure at VB.NET?

flag

1  
Yes. You can use two or more SqlCommand object with one Open connection. – Himadri Nov 5 at 9:53
1  
But you can't use one Command object to open two DataReaders. – HardCode Nov 6 at 22:19

2 Answers

vote up 1 vote down check

Yes you can. As long as you don't close the connection between commands, it'll work fine.

This is a C# example, but I'm sure you can work it out:

    using (SqlConnection cn = new SqlConnection("Connection String"))
    {

        SqlCommand cmd1 = new SqlCommand("Command1", cn);
        cmd1.CommandType = CommandType.StoredProcedure;

        SqlCommand cmd2 = new SqlCommand("Command2", cn);
        cmd2.CommandType = CommandType.StoredProcedure;

        cn.Open();

        // Execute cmd1
        // Execure cmd2

    }
link|flag
Thanks you a lot! – RedsDevils Nov 5 at 9:34
Don't forget to vote up and accept if it works ;) – GenericTypeTea Nov 5 at 9:34
I would like to vote but my reputation is under 15. :P – RedsDevils Nov 5 at 9:54
Thanks RedsDevils :) – GenericTypeTea Nov 5 at 10:12
vote up 2 vote down

Example; kinda pseudo but you should get the concept.

dim cnn as connection 
dim cmd as command 
dim cmd2 as command 
dim str1 as string
dim str2 as string 

cnn.open

cmd.connection = cnn 
cmd.command = str1 
cmd.execute

cmd2.connection = cnn 
cmd2.command = str2
cmd2.execute

cnn.close
link|flag
Thanks a lot pace! – RedsDevils Nov 5 at 10:30

Your Answer

Get an OpenID
or

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