could someone please tell me how to insert the date AND time into oracle. I have tried MANY different ways from examples I have found and NOTHING seems to work. I can't even find a reference to what Oracle wants as a parmameter. Here is what I have at this moment.
<cfset dt=DateFormat(now(),"dd-mmm-yy"
& " " & TimeFormat(now(),"HH:mm:ss"
>
<!---
<cfset dt=CreateODBCDateTime(now())>
it doesn't like this either
--->
<cfoutput>#dt#</cfoutput>
<cfquery username="tlc" password="desmond" datasource="coldfusion on slpr" debug>
insert into signon
(datetime)
values
('#dt#')
</cfquery>
any enlightenment would greatly be appreciated
jgroove
<cfset dt=DateFormat(now(),"dd-mmm-yy"
<!---
<cfset dt=CreateODBCDateTime(now())>
it doesn't like this either
--->
<cfoutput>#dt#</cfoutput>
<cfquery username="tlc" password="desmond" datasource="coldfusion on slpr" debug>
insert into signon
(datetime)
values
('#dt#')
</cfquery>
any enlightenment would greatly be appreciated
jgroove