vote up 1 vote down star

I am getting this error when I retrieve a row with a null DataTime field:

'srRow.Closed_Date' threw an exception of type 'System.Data.StrongTypingException'

How do I properly handle these?

flag

How are you pulling down the information? Is it in a data table or a strong typed object? – Aaron Jul 30 at 16:26

3 Answers

vote up 1 vote down check

There's a reference here.

or possibly, can you modify your query to ensure the results are not null by using the IsNull operator?

Select (IsNull, SomeDateField, GetDate())
link|flag
passing bogus dates instead of a null isn't the best choice here... – Scott Ivey Jul 30 at 16:35
vote up 2 vote down

You can check for a null value in that column before retrieving the value.

if (!srRow.IsClosed_DateNull())
{
  myDate = srRow.Closed_Date;
}
link|flag
+1 Good answer - yours should be the accepted answer, not the IsNull answer – Scott Ivey Jul 30 at 16:35
vote up 0 vote down

Assuming you're using .NET, there are SqlTypes that can be used in a situation like this.

link|flag

Your Answer

Get an OpenID
or

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