vote up 2 vote down star

How could we handle null for a datetime field (got from SQL Server) in our program in c#?

flag

49% accept rate

2 Answers

vote up 7 vote down check

There are 3 common approaches here;

  • if you are talking about object (perhaps as you fetch it from a data-reader), then DBNull.Value can represent null. I don't tend to let this out of the data-layer, though
  • due to .NET 1.1 history, DateTime.MinValue is commonly interpreted as null; a magic number, maybe - but it works and is supported by most data-binding etc
  • in .NET 2.0, Nullable<T> means you can use DateTime? - i.e. a nullable-of-DateTime; just use DateTime? where-ever you mean a DateTime that can be null, and you can give it a value of null or a valid DateTime.

Some other thoughts on data-access and nulls:

  • when passing to a SqlCommand you must use DBNull.Value, not null - see below
  • when reading from a data-reader, I tend to check reader.IsDbNull(ordinal)

command stuff (with Nullable<T> as the example):

param.Value = when.HasValue ? (object)when.Value : DBNull.Value;
link|flag
Mark, Thanks a lot. – odiseh Aug 30 at 3:35
vote up 2 vote down

Use DateTime?

What problem are you having, specifically?

-- Edit

Just so it's clear, that's a Nullable DateTime object, not a question :)

DateTime? t = null;

-- Edit

Responding to comment, check it like so:

DateTime? theTime;

if( table["TheColumn"] == DBNull.Value ){
    theTime = null;
} else {
    theTime = (DateTime) table["TheColumn"];
}
link|flag
I can not cast object (a column of DataRow) to DateTime . – odiseh Aug 29 at 9:20
Responded via edit. You just need to check if it is equal to DBNull.Value. – silky Aug 29 at 9:23
Oh found it Thank you. – odiseh Aug 29 at 9:37
solved it via using System.Convert.ToDateTime. – odiseh Aug 29 at 9:38
Okay ... You may like to post how you've solved it and mark it as accepted, so it helps anyone else who searches. – silky Aug 29 at 9:54

Your Answer

Get an OpenID
or

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