Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends

In my windows form application i am using ms access 2007. and i am using select query to select data between two values which are entered by user.

my query is as:
C#
"select AMT from SomeTable where DateValue(TestDate) between '" + fromdate + "' and '" + todate + "'"


and my from date and to date format is as '01-01-2013'

this gives me correct result when i select '01-01-2013' and '10-05-2013' but i not gives result when i select '30-01-2013' and '10-05-2013'. what is the problem with this query plz help me
Posted
Updated 9-May-13 20:45pm
v2

1 solution

In Access, dates are denoted with a hash #.

Try:

SQL
select AMT from SomeTable where DateValue(TestDate) between #"+ format(fromdate, "yyyy/mm/dd") + "# and #"+ format(todate, "yyyy/mm/dd") +"#"


Also, it's a good idea to format your dates yyyy/mm/dd to avoid regional issues.
 
Share this answer
 
v2
Comments
Maciej Los 10-May-13 3:14am    
In most cases your query will resolve problem, but sometimes we need to use another formatting (US format): MM/dd/yyyy.
Anyway, +5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900