i save the mutationdate of a page in access in the format dd-mm-yyyy...this went good but all of a sudden in the database the format is mm-dd-yyyy (i now have both dateformats in my database which really sucks :()
when i response.write my sql statement i see the correct dateformat (so in this example 10-7-2003=10 july 2003) but in the database it saves 7-10-2003
below you see my sql statement
Quote:
quote:
update page set content = 'test', date = '10-7-2003', levelid = 2, author = 'Harold', levelnaam = 'test', deelprocesid = 0, previous = 119, next = 0 where contentId = 245
|
it really drives me nuts...so i would be glad if somebody could help :)
Harold