Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table which contains null values and I need to get data from the table using SqlDataReader. I can't figure out how I can safely cast DBNull to int.

I'm doing it in this way at the moment:

...
reader = command.ExecuteReader();
while (reader.Read()) {
     int y = (reader["PublicationYear"] != null) ? Convert.ToInt32(reader["PublicationYear"]) : 0;
     ...
}
...

but getting a Object cannot be cast from DBNull to other types. when PublicationYear is null.

How can I get the value safely?

Thanks.

share|improve this question
lots of answers you got here, all seams to be correct... check my answer as an alternative solution. IMO that's the best approach if you are going to convert DB null values to 0. – Niko G. Feb 21 '12 at 12:54

9 Answers

up vote 5 down vote accepted

You should compare reader["PublicationYear"] to DBNull.Value, not null.

share|improve this answer
1  
+1 for first! :) – Abbas Feb 21 '12 at 12:39

DBNull is not the same as null. You should try something like this instead:

int y = (reader["PublicationYear"] != DBNull.Value) ? ...
share|improve this answer

You should explicitly check if the value returned is of type DBNull

while (reader.Read()) {
     int y = (!reader["PublicationYear"] is DBNull) ? Convert.ToInt32(reader["PublicationYear"]) : 0;
     ...
}

In fact, you can do this comparison by value as well as type:

reader["PublicationYear"] != DBNull.Value

In short - you can expect DBNull to be returned for nulls from the database, rather than null itself.

share|improve this answer

as an alternative you can do the following. as you are converting DBNull to 0, alter the procedure that does the select. so that the select itself returns zero for a null value.

snippet to demonstrate the idea

    SELECT ...
           ,ISNULL (PublicationYear, 0) as PublicationYear
           ...
    FROM sometable

advantage of this is that, no additional checking is needed in your code.

share|improve this answer
Good one. +1 for thinking out of the box. – Mr Lister Feb 21 '12 at 13:00

That's the error: (reader["PublicationYear"] != null) You should test for DBNull.Value....

share|improve this answer
int ord = reader.GetOrdinal("PublicationYear");
int y = reader.IsDBNull(ord) ? 0 : reader.GetInt32(ord);

Or, alternatively:

object obj = reader["PublicationYear"];
int y = Convert.IsDBNull(obj) ? 0 : (int)obj;
share|improve this answer

Change your test from (reader["PublicationYear"] != null) to (reader["PublicationYear"] != DBNull.Value).

share|improve this answer

Database null values should be compared with DBNull.Value

reader = command.ExecuteReader(); while (reader.Read()) { int y = (reader["PublicationYear"] != DBNull.Value) ? Convert.ToInt32(reader["PublicationYear"]) : 0; ... }

share|improve this answer

Change

reader["PublicationYear"] != null

to

reader["PublicationYear"] != DBNull.Value

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.