Question
Now()
I have field purchase_date in my table.
<cfquery datasource=#Request.datasource#>
insert into(purchase_date)
Values(<cfoutput>#Dateformat(Now(), "mm/dd/yyyy")#</cfoutput>)
</cfquery>
I expect today's date inserted in my table instade it saws 12/30/1890.
I kept tring never get todays date.
If there if microsoft access 2003 issue? How can I solve it.
Note: Rest of text fields are inserted as expected.
<cfquery datasource=#Request.datasource#>
insert into(purchase_date)
Values(<cfoutput>#Dateformat(Now(), "mm/dd/yyyy")#</cfoutput>)
</cfquery>
I expect today's date inserted in my table instade it saws 12/30/1890.
I kept tring never get todays date.
If there if microsoft access 2003 issue? How can I solve it.
Note: Rest of text fields are inserted as expected.