beaniebear
Programmer
I have an asp script that inserts dates from a form into an access database. The SQL insert is being written correctly. When the dates appear in the database they are in the format mm/dd/yyyy even though the format they were inputted in was dd/mm/yyyy. This is also affecting pulling information from the database when selecting data between two dates. If I enter between 01/11/2004 and 30/11/2004 it returns data from 11th January to 30th Nov.
Example of update query : Update [Development] set [DevDateActive]=#01/02/2003# where DevID=314
Example of select query : select * FROM Development WHERE Development.devDateActive between #01/11/2004# and #30/11/2004#
Finally I have checked that the regional settings on the server are set correctly.
Any help would be much appreciated.
Example of update query : Update [Development] set [DevDateActive]=#01/02/2003# where DevID=314
Example of select query : select * FROM Development WHERE Development.devDateActive between #01/11/2004# and #30/11/2004#
Finally I have checked that the regional settings on the server are set correctly.
Any help would be much appreciated.