I'm working with legacy code here and there are many instances of SQLDataReader that are never closed or disposed. The connection is closed but, I am not sure if it is necessary to manage the reader manually.

Could this cause a slowdown in performance?

link|improve this question

feedback

5 Answers

up vote 30 down vote accepted

Try to avoid using readers like this:

SqlConnection connection = new SqlConnection("connection string");
SqlCommand cmd = new SqlCommand("SELECT * FROM SomeTable", connection);
SqlDataReader reader = cmd.ExecuteReader();
connection.Open();
if (reader != null)
{
      while (reader.Read())
      {
              //do something
      }
}
reader.Close(); // <- too easy to forget
reader.Dispose(); // <- too easy to forget
connection.Close(); // <- too easy to forget

Instead, wrap them in using statements:

using(SqlConnection connection = new SqlConnection("connection string"))
{

    connection.Open();

    using(SqlCommand cmd = new SqlCommand("SELECT * FROM SomeTable", connection))
    {
    	using (SqlDataReader reader = cmd.ExecuteReader())
    	{
    		if (reader != null)
    		{
    			while (reader.Read())
    			{
    			    //do something
    			}
    		}
    	} // reader closed and disposed up here

    } // command disposed here

} //connection closed and disposed here

The using statement will ensure correct disposal of the object and freeing of resources.

If you forget then you are leaving the cleaning up to the garbage collector, which could take a while.

link|improve this answer
4  
You don't need the .Close() statement in either sample: it's handled by the .Dispose() call. – Joel Coehoorn Apr 13 '09 at 14:34
Fine, I marked the close as optional in the code – Codebrain Apr 13 '09 at 14:36
This sample doesn't show the underlying connection being closed/disposed, which is the most important thing. – Joe Apr 13 '09 at 15:46
I don't get it when would the reader be null after "cmd.ExecuteReader"? – Andrei Rinea Apr 14 '09 at 0:10
2  
Probably want to check if it .HasRows rather then null. – JonH Nov 23 '09 at 13:13
show 3 more comments
feedback

Note that disposing a SqlDataReader instantiated using SqlCommand.ExecuteReader() will not close/dispose the underlying connection.

There are two common patterns. In the first, the reader is opened and closed within the scope of the connection:

using(SqlConnection connection = ...)
{
    connection.Open();
    ...
    using(SqlCommand command = ...)
    {
        using(SqlDataReader reader = command.ExecuteReader())
        {
            ... do your stuff ...
        } // reader is closed/disposed here
    } // command is closed/disposed here
} // connection is closed/disposed here

Sometimes it's convenient to have a data access method open a connection and return a reader. In this case it's important that the returned reader is opened using CommandBehavior.CloseConnection, so that closing/disposing the reader will close the underlying connection. The pattern looks something like this:

public SqlDataReader ExecuteReader(string commandText)
{
    SqlConnection connection = null;
    SqlCommand command = null;
    try
    {
        connection = new SqlConnection(...);
        connection.Open();
        command = new SqlCommand(commandText, connection);
        return command.ExecuteReader(CommandBehavior.CloseConnection);
    }
    catch
    {
        // Close connection before rethrowing
        command.Close();
        connection.Close();
        throw;
    }
}

and the calling code just needs to dispose the reader thus:

using(SqlDataReader reader = ExecuteReader(...))
{
    ... do your stuff ...
} // reader and connection are closed here.
link|improve this answer
2  
There is not a Close() method on the SqlCommand object. – Dave Sep 22 '10 at 19:33
In the second code snippet where the method returns a SqlDataReader the command is not disposed. Is that ok and is it ok to dispose the command (enclose it in a using block) and then return the reader? – alwayslearning Oct 21 '11 at 6:36
@alwayslearning that's exactly the scenario that I have......can you close/dispose of the SqlCommand when you are returning the SqlDataReader to the caller? – ganders May 18 at 20:15
feedback

To be safe, wrap every SqlDataReader object in a using statement.

link|improve this answer
Fair enough. However, does it actually make a difference in performance if there is no using statement? – Jon Ownbey Apr 13 '09 at 14:30
A using statement is the same as wrapping the DataReader code in a try..finally... block, with the close/dispose method in the finally section. Basically, it just "guarantees" that the object will be disposed of properly. – Todd Apr 13 '09 at 14:34
This is straight from the link I provided: "The using statement ensures that Dispose is called even if an exception occurs while you are calling methods on the object." – Kon Apr 13 '09 at 14:35
1  
Continued... "You can achieve the same result by putting the object inside a try block and then calling Dispose in a finally block; in fact, this is how the using statement is translated by the compiler." – Kon Apr 13 '09 at 14:35
feedback

Just wrap your SQLDataReader with "using" statement. That should take care of most of your issues.

link|improve this answer
feedback

Joe, There is no SqlCommand.Close() method

link|improve this answer
1  
This is a comment on an answer, not an answer to the original question. – Odrade Feb 5 '11 at 1:00
feedback

Your Answer

 
or
required, but never shown

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