Setting Oracle Timestamp with Coldfusion -
this pretty simple question, , searched previous questions couldn't find answer.
how insert or create timestamp in oracle using coldfusion?
you can insert this:
<cfquery name="qtest"> insert mytable(mytimestampcol) values (<cfqueryparam cfsqltype="cf_sql_timestamp" value="#now()#" />) </cfquery>
hope helps.
Comments
Post a Comment