hallo,

which one is better for closing sqlsreader:

 SqlDataReader reader = comm.ExecuteReader();
        while (reader.Read())
        { 

        }
        reader.Close();
        reader.Dispose();

or

SqlDataReader reader = comm.ExecuteReader(CommandBehavior.CloseConnection);
        while (reader.Read())
        { 

        }

or there are another closing methode ?

Thanx in advance, Stev

link|improve this question

74% accept rate
2  
You should consider accepting some answers. Also, I don't think that the reader is disposed in the second variant. You should always be using "using" – Oskar Kjellin May 30 '11 at 8:37
feedback

4 Answers

up vote 5 down vote accepted

The correct way of handling this is the using statement:

using(SqlDataReader reader = comm.ExecuteReader(CommandBehavior.CloseConnection)) {
    while (reader.Read())
    { 

    }
}

This way the object gets disposed correctly (and you don't need to call Close()).

link|improve this answer
feedback

A using statement is the best practice in such situations from my experience. It makes sure the connection is properly closed even if an exception happens somewhere inside.

using (SqlDataReader reader = comm.ExecuteReader())
{
    while (reader.Read())
    {
        //Do stuff...
    }
}

Of course you could do the same with a try { } finally { }, which is what the using statement does internally. I found it's generally a good idea to get in the habit of always handling readers via the using statement to avoid the possibility of leaked connections.

link|improve this answer
feedback

Use first scenario if you work with reader within one method and second one if you pass reader as return value (not within one scope).

link|improve this answer
feedback

the doc you need is this one: http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.close.aspx

To quote: "You must explicitly call the Close method when you are through using the SqlDataReader to use the associated SqlConnection for any other purpose."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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