Evidently, I'm doing somthing wrong.
I want to compare the date in the database with a date chosen by a user on the web form. I want all records after the date the user has chosen to be displayed on the page. I used the following sql statement:
Select * From table_name WHERE ((table_name.dateSubmitted) > " & CDATE(dateMonth & "/" & dateDay & "/" & dateYear) & "
"
However, it doesn't matter if I choose a date on the web form from before the dates in the database or after them, it still returns all records in the database. How can I tell it to only return dates after the selected web form date? -Ovatvvon :-Q
I want to compare the date in the database with a date chosen by a user on the web form. I want all records after the date the user has chosen to be displayed on the page. I used the following sql statement:
Select * From table_name WHERE ((table_name.dateSubmitted) > " & CDATE(dateMonth & "/" & dateDay & "/" & dateYear) & "
However, it doesn't matter if I choose a date on the web form from before the dates in the database or after them, it still returns all records in the database. How can I tell it to only return dates after the selected web form date? -Ovatvvon :-Q