I have an sqlCE field A, type text, that holds a date string in this format:

31/12/2011 11:29:09

Also, I have an sqlCE field B, type text, that holds a date string in this format:

04/04/2011 10:12:01

Today's date in my computer is :19/01/09 21:54:28

How can I check if today's date is between date A and date B, with any region or date type?

Thanks in advance.

link|improve this question

49% accept rate
feedback

2 Answers

up vote 3 down vote accepted

If your database field is of type text, then you first need to parse the text value into a (genuine) datetime value. The recommended function for this is DateTime.ParseExact. Example:

string myString = ...; // the value you read from the database
DateTime myDateTime = DateTime.ParseExact(myString, "dd/MM/yyyy HH:mm:ss", 
                                          CultureInfo.InvariantCulture);

About the "with any region or date type" you mentioned in the question: That's what the second and third parameter of ParseExact is about: There, you can specify the format that the text values in the database have. (See the documentation of DateTime.ParseExact for more details.) Note that you do need to specify the format: Otherwise, the function wouldn't be able to tell whether 03/04/2010 is the fourth of March or the third of April.

Afterwards, you can use regular date comparison operations (e.g. if (datetime1 <= datetime2) { ... }) to check if the date is within the desired time frame.

link|improve this answer
feedback

See this. It may help you. Don't forget to mark as answer if it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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