martindavey
Programmer
I am trying to access rows from an MS Access table<br>which is organised within dates.<br><br>I am using a query similar to the following:-<br><br>select * from myTable<br>where myDate >= #FirstDate#<br>and myDate <= #LastDate#<br><br>The trouble is, my data has dates in the standard<br>English format dd/mm/yy<br><br>But I guess the American based server has the format<br>mm/dd/yy<br><br>Is there some way I can ensure that the 'myDate'<br>variable is always in the English format?<br><br>NB. Converting my data to a Non-English format<br> is not an option.