up vote 5 down vote favorite
share [g+] share [fb]

I have an application that is causing a lot of headaches. It's a .NET app connecting to SQL Server 2005 via a web service. The program has grid that is filled by a long running stored procedure that is prone to timing out. In the case when it does time out and a SqlException is thrown, there is no execption handling to close the connection.

What are the actual consequences of this condition? I think that the framework or SQL Server probably takes care of it one way or another but am not sure.

Addition The program always works well in the morning, but after an hour or so of use it basically stops working. The issue isn't that I don't know how to code the connection properly. I need to know if these symptoms could be casued by the unclosed connections. It is kind of a big deal to change the production code and I would like to know that it is at least possible for this to be the issue.

Conclusion I engineered this failure to occur on hundreds of simultaneous connections. Never was I able reproduce the failure condition in the application environment. Marked best practices answer as correct. Thanks everyone.

link|improve this question
I think the tag should have been sql-server and not two separate tags as the questions displays – Pablo Marambio Sep 27 '08 at 19:11
noted. thank you. – Brad_Z Sep 27 '08 at 19:20
It sounds like you have connection pooling turned on in your production environment. With pooling on, connections aren't closed even if you tell them to close, so it won't matter that you aren't closing them. – MusiGenesis Sep 28 '08 at 15:52
feedback

7 Answers

up vote 6 down vote accepted

Since a SqlConnection closes while disposing i usually use this syntax

using (SqlConnection conn = new SqlConnection())
{
  // SqlCode here 
}
link|improve this answer
feedback

There is a connection limit; if your app crashes frequently and does not close the connections automatically, new connection requests will be denied.

That said, connections do time out after a while if they're not closed.

link|improve this answer
feedback

You could run out of connections available if it happens often enought, you should use a finally everywhere you execute a command to close the connection.

link|improve this answer
feedback

The garbage collector will eventually finalize your open connection object, but you don't know when the GC comes around the next time. Until then you might run out of connections in your pool if you have a lot of traffic or it's a shared sql server.

Why not dispose it in the finally section of your try/catch block?

finally
{
   if (cn != null)
   {
      cn.Dispose();
      cn = null;
   }
}

This should be done in the web service method obviously.

link|improve this answer
that is done automatically in a using block – Pablo Marambio Sep 27 '08 at 19:11
True, but obviously he's "using" neither... – Codewerks Sep 27 '08 at 19:13
Why vote down a correct answer? I don't get that... – Codewerks Sep 27 '08 at 19:15
You don't need the "cn = null;" </nitpicking> – MusiGenesis Sep 27 '08 at 19:36
I voted you back up because you were the only person to mention pooling. The behaviour of connections is very different depending on whether you are using connection pooling or not. – Darrel Miller Sep 28 '08 at 2:22
feedback
try
{
    sqlCommandObject.Execute(); // this line will throw a timeout exception
}
finally
{
    sqlConnectionObject.Close(); // this will execute no matter what happens
}
link|improve this answer
I think the recommendation from MS and others was to use Dispose() or as Pablo pointed out, a using block. Dispose() calls Close() on the connection object, and does other cleanup if necessary. – Codewerks Sep 27 '08 at 19:14
This answer is "correct". msdn.microsoft.com/en-us/library/… "Close and Dispose are functionally equivalent." – David B Sep 28 '08 at 14:25
feedback

If the app stops working after an hour or so, that could definitely be caused by connections not being closed/disposed.

link|improve this answer
feedback

This is why the 'using' keyword is so important when using ADO.Net

 using ( SqlConnection conn = new SqlConnection() )
 {
     ...
 }

This forces a type of deterministic garbage collection on the ADO.Net object using the IDispose interface.

Most database code uses a lot of nested 'using' clauses for that purpose.

link|improve this answer
The IDispose interface has nothing to do with garbage collection. It forces deterministic release of unmanaged resources. – Joe Sep 27 '08 at 21:26
Joe, your statement is incorrect. IDispose doesn't have anything to do with unmanaged resources. Check out codeproject.com/KB/mcpp/garbage_collection.aspx , for example. – kervin Sep 28 '08 at 19:06
feedback

Your Answer

 
or
required, but never shown

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