I have some null values in the db which throws some errors, so I decided to set it to something if it was null and move on. Checking for null doesn't appear to do anything.

            if (rdr.GetString("timeOut") == null)
            {
                queryResult.Egresstime = "Logged in";
            }
            else
            {
                queryResult.Egresstime = rdr.GetString("timeOut");
            }   

It always defaults to the else and errors even when I know null values are going through (at least the mysql query shows null values)

Error message:

LogDAO build list: System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or property cannot be cal led on Null values. at MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull) at MySql.Data.MySqlClient.MySqlDataReader.GetString(Int32 i) at MySql.Data.MySqlClient.MySqlDataReader.GetString(String column)

link|improve this question

78% accept rate
feedback

5 Answers

up vote 7 down vote accepted
var ordinal = rdr.GetOrdinal("timeOut");
if(rdr.IsDBNull(ordinal)) {
  queryResult.Egresstime = "Logged in";
} else {
  queryResult.Egresstime = rdr.GetString(ordinal);
}//if

or

if(Convert.IsDbNull(rdr["timeOut"])) {
  queryResult.Egresstime = "Logged in";
} else {
  queryResult.Egresstime = rdr.GetString("timeOut");
}//if
link|improve this answer
You are the Winner 0f your very own green check. I used the second one. Thanks! – rd42 Jan 19 '11 at 19:42
feedback

if(rdr.GetString("timeOut") == DBNull.Value)

null is not the same as DBNull

I am sorry, wrong answer, Sam B is right. I mistook this for DataRow stuff.

SqlDataReader does have strongly typed GetString() and provides IsDBNull(int column) for this case.

link|improve this answer
2  
I think it should be DBNull.Value – VoodooChild Jan 19 '11 at 19:25
@BoodooChild - thanks – Axarydax Jan 19 '11 at 19:26
Heres what I get Error 1:Operator '==' cannot be applied to operands of type 'string' and 'System.DBNull' – rd42 Jan 19 '11 at 19:33
-1 : string cannot be compared to DBNull.Value. – Sam B Jan 19 '11 at 19:37
Thanks for the help though. – rd42 Jan 19 '11 at 20:20
feedback

You must call rdr.IsDBNull(column) to determine if the value is DbNull.

link|improve this answer
feedback

Change null to DBNull.Value.

link|improve this answer
Heres what I get Error 1:Operator '==' cannot be applied to operands of type 'string' and 'System.DBNull' – – rd42 Jan 19 '11 at 19:35
feedback

You can also do:

If (string.IsNullOrEmpty(rdr.GetString("timeOut"))

link|improve this answer
Has the same effect as (rdr.GetString("timeOut") == null) – rd42 Jan 19 '11 at 19:35
@rd42: so what is the actual value in that field when you debug? just curious? – VoodooChild Jan 19 '11 at 19:42
The value is: 12/7/2010 10:16:46 AM Thanks for your help. – rd42 Jan 19 '11 at 20:21
feedback

Your Answer

 
or
required, but never shown

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