vote up 4 vote down star
2

Can I use this approach efficiently?

using(SqlCommand cmd = new SqlCommand("GetSomething", new SqlConnection(Config.ConnectionString))
{
    cmd.Connection.Open();
    // set up parameters and CommandType to StoredProcedure etc. etc.
    cmd.ExecuteNonQuery();
}

My concern is : Will the Dispose method of the SqlCommand (which is called when exiting the using block) close the underlying SqlConnection object or not?

flag

7 Answers

vote up 11 vote down check

No, Disposing of the Command will not effect the Connection. A better approach would be to also wrap the SqlCommand in a using block as well

using (SqlConnection conn = new SqlConnection(connstring))
{
    conn.Open();
    using (SqlCommand cmd = new SqlCommand(cmdstring, conn))
    {
        cmd.ExecuteNonQuery();
    }
}

Otherwise, the Connection is unchanged by the fact that a Command that was using it was disposed (maybe that is what you want?). But keep in mind, that a Connection should be disposed of as well, and likely more important to dispose of than a command.

EDIT:

I just tested this:

SqlConnection conn = new SqlConnection(connstring);
conn.Open();

using (SqlCommand cmd = new SqlCommand("select field from table where fieldid = 1", conn))
{
    Console.WriteLine(cmd.ExecuteScalar().ToString());
}

using (SqlCommand cmd = new SqlCommand("select field from table where fieldid = 2", conn))
{
    Console.WriteLine(cmd.ExecuteScalar().ToString());
}

conn.Dispose();

The first command was disposed when the using block was exited. The connection was still open and good for the second command.

So, disposing of the command definitely does not dispose of the connection it was using.

link|flag
You don't need to open the connection before creating the command right? Make it a little cleaner like this: using (SqlConnection conn = new SqlConnection(connstring)) using (SqlCommand cmd = new SqlCommand(cmdstring, conn)) { conn.Open(); cmd.ExecuteNonQuery(); conn.Close(); } – SkippyFire May 13 at 12:48
I guess the formatting doesn't stick... but basically lump the to using statements together and get rid of a level of nesting. (If you want) – SkippyFire May 13 at 12:48
The point of the example is not to show a simpler syntax, but to demonstrate that both SqlCommands can be used with the same connection and then disposed without disposing of the connection. The connection needs to be opened and then used twice in order to demonstrate this (see original question). – Ryan Farley May 16 at 17:16
vote up 3 vote down

SqlCommand.Dispose will not be sufficient because many SqlCommand(s) can (re)use the same SqlConnection. Center your focus on the SqlConnection.

link|flag
vote up 0 vote down

@huseyint : are you sure of this? There is a connection pool to help exactly this issue but this does not address my problem..

link|flag
Yes there is a connection pool but everything has its limits. Why do you want to create unnecessary SqlConnection objects instead of creating one and use it with several SqlCommand object? – huseyint Sep 13 '08 at 22:18
vote up 0 vote down

@lassevk : This is not necessarily true. A closed connection can be reopened. A disposed connection cannot be reopened.

link|flag
That might be true, but I did answer his question. Disposing of the command object will not dispose of or close the underlying connection. – Lasse V. Karlsen Sep 13 '08 at 22:17
vote up 0 vote down

Yes, I've often seen the pattern of nesting two using blocks (the outer for the connection and the inner for the command; or even 3 having the inner-most for the SqlDataReader) but I thought things can be compressed a bit.

Maybe they can't.

link|flag
vote up 0 vote down

After some thought I have come to the conclusion that a compression of code can still be made like this :

using(SqlConnection con = new SqlConnection("connection string"), SqlCommand cmd = new SqlCommand ("GetSomething", con))
{
  con.Open();
  cmd.ExecuteNonQuery();
}
link|flag
vote up -1 vote down

Creating a new SqlConnection is not a good approach for every SqlCommand, create one use it everywhere.

And btw, disposing the SqlCommand does not dispose the underlying SqlConnection. But in this approach, the SqlConnection will eventually be disposed by garbage collector since it is going out of using scope.

link|flag
small note: it isn't "disposed by garbage collector" -- the using block calls conn.Dispose() as execution leaves the block. The garbage collector has nothing to do with it. – Jonathan Sep 22 '08 at 6:03
Think of ASP.NET application. If there is a big amount of parallel workload it absolutely makes sense creating the connection when needed and releasing them soon. Otherwise you will soon run into connection pool issues or performance problems. – splattne Oct 1 at 13:21
1  
You're not right. It's better to create new connection for each new command. Though connections will be pooled and not be created really. – abatishchev yesterday

Your Answer

Get an OpenID
or

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