Whatever message this page gives is out now! Go check it out!
CreateODBCDateTime(date)Parameter | Description |
date | Date-time object in the range 100 AD-9999 AD. |
<cfscript>
year = 2018;
month = 11;
day = 02;
hour = 1;
minute= 09;
second= 46;
myDate=CreateDateTime(year,month,day,hour,minute,second)
format=CreateODBCDateTime(myDate)
writeOutput("Date and time format is : " & format);
</cfscript>