Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I took over this project and one page is throwing a lot of errors. I would need to refactor the whole thing but as always time is an issue.

In one case the code check's whether a datareader has any rows and if not go to an error page. However as the code is now the datareader can be null (didn't successfully connect to db) and in those cases I can't use

if (!dr.HasRows)
//

becasuse it obviously gives me 'nullreferenceexception was unhandled by code'. I tried with !dr.Read but same thing.

A part of the code is something like

SqlDataReader dr = null;
try
{
//connect to db etc
dr = DbHelper.GetReader("sp_GetCustomer", param);
}
catch
{
//show an error message
}

// and then:
if (!dr.HasRows)
{

}

Any suggestions?

Thanks in advance.

share|improve this question
How about putting the dr.hasrows in the try as well and handle that error as well? – Elad Lachmi Apr 5 '11 at 13:10
@Elad: NO! Avoid obvious exceptions, don't catch them. – Dan Puzey Apr 5 '11 at 13:14
@Dan Puzey - Sure, but stuff happens. You can never know, and if the specific stuff happens, I would rather catch it than not... Give some kind of inteligent error. – Elad Lachmi Apr 5 '11 at 13:16
@Elad: you can always avoid catching NullReferenceException by checking the thing you're about to reference. – Dan Puzey Apr 5 '11 at 13:20
@Dan Puzey - Ohh... Now I see what your saying. They your right. – Elad Lachmi Apr 5 '11 at 13:22

2 Answers

up vote 7 down vote accepted

What about:

if (dr == null || !dr.HasRows) {
    // Do something
}
share|improve this answer
I think that would evaluate !dr.HasRows as well anyway, no? – Elad Lachmi Apr 5 '11 at 13:11
of course, I am getting too tired dealing with this mess. Thanks – Nick Apr 5 '11 at 13:12
1  
@Elad: No, in C# additional parameters for the if statement are only checked as necessary. This is referred to as "short-circuited". You can read more here. – FreeAsInBeer Apr 5 '11 at 13:13
If dr==null is true, it will short circuit the evaluation - OR operator has no need to evaluate the right hand side of the expression if it knows the left hand side is true. – Jaymz Apr 5 '11 at 13:14
Did not know that. Thanks for the info! – Elad Lachmi Apr 5 '11 at 13:15

One possibility is:

SqlDataReader dr = null;
try
{
    //connect to db etc
    dr = DbHelper.GetReader("sp_GetCustomer", param);
    if (!dr.HasRows)
    {

    }
}
catch
{
//show an error message
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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