Date Addition Using CreateTimeSpan() Creates A Numeric Date

Posted May 19, 2009 at 8:53 AM

Tags: ColdFusion

This really isn't news; I am just writing this down to try and drill it into my head. I just spend 10 minutes debugging some old Caching code that uses a CacheUntil date/time stamp. When setting the CacheUntil value, I was using the CreateTimeSpan() to create a future date:

(Now() + CreateTimeSpan( 0, 0, 5, 0 ))

The cache never seemed to be expiring. As part of the logic, the caching controller was checking to see if the CacheUntil value was a date since non-date values would denote a non-expiring data store. It was using ColdFusion's IsDate() function to check the CacheUntil value; IsDate() is great, but it ignores numeric date/time representations. As such, the date I created using the CreateTimeSpan() math was being ignored:

 Launch code in new window » Download code as text file »

  • <!--- Get a date that is 10 minutes in the future. --->
  • <cfset objFuture = (Now() + CreateTimeSpan( 0, 0, 10, 0 )) />
  •  
  • IsDate() :: #IsDate( objFuture )#<br />
  • IsNumericDate() :: #IsNumericDate( objFuture )#<br />

When we run the above code, we get the following output:

IsDate() :: NO
IsNumericDate() :: YES

As you can see, the date math produced a value that IsDate() did not recognize but IsNumericDate() did. I ran into this issue almost three years ago, but I still forget to use IsNumericDate() as my default date/time filter. Remember, remember, remember - just start using IsNumericDate()!

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Print Page


You Might Also Be Interested In:



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

May 19, 2009 at 10:20 AM // reply »
20 Comments

Why not just use dateadd('n',5'now())? to adjust your date. Then you don't have to worry about numeric dates?


May 19, 2009 at 10:25 AM // reply »
6,348 Comments

@Anthony,

For some reason, I am simply not a huge fan of DateAdd(). It feels unnatural. Plus, if you are dealing with encapsulated logic or packaged products, I think its a good idea to make it as flexible as possible; if you require your calling code to provide standard date/time stamps only, it cuts out a lot of the logic that people will use to create date/time stamps.


May 19, 2009 at 10:47 AM // reply »
7 Comments

I often use the IsDate() for my date validation but your point seems very valuable here and using IsNumericDate() over IsDate() will solve many problems like this I think.


May 19, 2009 at 10:50 AM // reply »
6,348 Comments

@Akbarsait,

I find it solves my problems :)


May 19, 2009 at 11:09 AM // reply »
20 Comments

@Ben, I guess using createtimespan makes more sense if you want to add something like 1 hour and 5 minutes.


May 19, 2009 at 11:10 AM // reply »
6,348 Comments

@Anthony,

Yeah, I really like the way it easily breaks out all the time fields. Very easy to work with.


May 19, 2009 at 10:27 PM // reply »
2 Comments

I've always wondered why some date/times didn't show up as Yes using isDate. This will come in quite handy for me.


Anna
May 20, 2009 at 4:07 AM // reply »
20 Comments

your comments to Anthony are insightful; I also would probably have just used dateAdd if I had come across the problem. But I'm not as experienced as you are. I think this is something programmers come across quite often...finding things that aren't new, but that they need to drill into their heads on a regular basis, because for whatever reason, they forget those certain things. Good post. It'll certainly help me remember and drill it into m head. Thanks!


Anna
May 20, 2009 at 4:08 AM // reply »
20 Comments

my head. sorry. it's early...


May 20, 2009 at 10:45 PM // reply »
6,348 Comments

@Anna,

Don't get me wrong - there's nothing wrong with DateAdd() at all. It's just that when you use it, you put more responsibility on the calling code to know the limitations of the implementation. Most of the time, its not an issue; but, anytime you are building something that involves non-standard times, it's probably a good idea to use IsNumericDate().


Post Comment  |  Ask Ben

Recent Blog Comments
Justin
Nov 3, 2009 at 3:00 PM
A Moment That Touched Me - The Fountainhead
Well, I'm just going to go back to your mind blowing jquery single page application code. I feel better there. ... read »
Nov 3, 2009 at 2:57 PM
19.0 Must Be Within Range: ( 1 : 12 )
@Troy, Yeah, that'll get you ever time :) Good catch. ... read »
Nov 3, 2009 at 2:56 PM
A Moment That Touched Me - The Fountainhead
@Justin, I suppose it comes down to what we define as sacrifice. I don't think Rand talked about delivering a quality life style to everyone; I think she merely talked about one not being able to a ... read »
Troy
Nov 3, 2009 at 2:43 PM
19.0 Must Be Within Range: ( 1 : 12 )
I recently had a similar ColdFusion error with no line number information to help: 11.0 must be within range: ( 1 : 7 ) The date in my Form variable was "11/11/2009" and I was doing this: DayOfWee ... read »
Justin
Nov 3, 2009 at 2:40 PM
A Moment That Touched Me - The Fountainhead
@Ben and @Brian, Someone will have to sacrifice. There are just too many people living too close together. We can't ignore that reality. ... read »
Nov 3, 2009 at 2:19 PM
A Moment That Touched Me - The Fountainhead
"I believe that part of her (Rand's) philosophy was that one could not pursue things that asked others to sacrifice themselves." Agreed. That's one of the important points people tend to overlook wh ... read »
Nov 3, 2009 at 2:07 PM
A Moment That Touched Me - The Fountainhead
@Justin, Certainly, we don't have to go overboard - I agree. After all, I just wanted to post a passage that I found moving. And, as with anything that is moving, it is that way to some and not to ... read »
Justin
Nov 3, 2009 at 2:00 PM
A Moment That Touched Me - The Fountainhead
I really don't want to string this out as I will be out maneuvered by the more astute posters. However, blogs are for opinions, even plebes, right? If your pursuit for self-fulfillment interferes wi ... read »