View Single Post

   
  #4 (permalink)  
Old 04-19-2008, 07:02 PM
Aarni =?iso-8859-1?q?Ruuhim=E4ki?=
 
Posts: n/a
Default Re: dateformat issue

On Thursday 10 April 2008 09:41, Gavin 'Beau' Baumanis wrote:
> Hi Aarni,
>
> just so you know I am using the CF built-in function,
> createodbcdate
>
> here is the info from livedocs.
>
> CreateODBCDate
> Description
>
> Returns a date in ODBC date format.
> Category
>
> Date and time functions
> Syntax
>
> CreateODBCDate(date)
>
> so I pass in 2008-01-23
> and I get back
>
> {d '2008-01-23'}
>
> The weirdness for me is that it works elsewhere in the application, I
> am really stumped.
>
> -Gavin.
>


That value shouldn't work at all ... ?

<cfoutput>

#Now()# ||

#CreateODBCDate(2008-04-10)# = #CreateODBCDate(1994)#

|

#CreateODBCDate('2008-04-10')#

|

#CreateODBCDate(Now())#

|

#DateFormat(Now(), "YYYY-MM-DD")#

|

#DateFormat('2008-04-10', "YYYY-MM-DD")#
</cfoutput>

Produces:
{ts '2008-04-10 10:26:21'} || {d '1905-06-16'} = {d '1905-06-16'} | {d
'2008-04-10'} | {d '2008-04-10'} | 2008-04-10 | 2008-04-10

This is on CFMX7.

Best regards,

--
Aarni Ruuhimäki
---
Burglars usually come in through your windows.
---

--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql

Reply With Quote