How to handle timezones in CFML? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T11:19:06Zhttp://stackoverflow.com/feeds/question/795615http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/795615/how-to-handle-timezones-in-cfml6How to handle timezones in CFML?Henry2009-04-27T22:55:56Z2009-04-27T23:18:09Z
<p>How to handle timezones in CFML? So far all apps I've wrote just use the default timezone of the CF server and/or SQL server.</p>
<p>What do you guys usually do? Do you store all dates in GMT with GetTimezineInfo() and then DateAdd(), and translate all time to the correct timezone based on logged in user's preference?</p>
<p>Or do you guys use any java methods?</p>
http://stackoverflow.com/questions/795615/how-to-handle-timezones-in-cfml/795651#7956518Answer by Vincent Buck for How to handle timezones in CFML?Vincent Buck2009-04-27T23:12:26Z2009-04-27T23:18:09Z<p>I was looking into the issue some time ago and found <a href="http://www.sustainablegis.com/blog/cfg11n/index.cfm?mode=cat&catid=162AEDB4-20ED-7DEE-2A6CF1B79AC2E03A" rel="nofollow">Paul Hasting's blog</a> and Coldfusion/Java examples very helpful:</p>
<p>Don't forget to check out his <a href="http://www.sustainablegis.com/projects/tz/testTZCFC.cfm" rel="nofollow">TZCFC test bed</a></p>
<p>How to store dates will probably depend on your business logic. In a project I did where we had to implement human resource scheduling across timezones we stored dates/times in UTC and used datediff in the database to check for conflicts.</p>
<p>EDIT:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/11975/handling-timezones-in-storage">Handling timezones in storage</a></li>
<li><a href="http://stackoverflow.com/questions/237023/is-there-a-central-repository-for-time-zone-information">Is there a central repository for
time zone information</a></li>
</ul>