T
Test_1
I have an access database with a table called "Orders"
with a field "Date" (date/time type, using General date
format).
I need to create a report with the orders in a period of
time. To do so I capture the start and end dates of the
period using two text boxes in an form that posts to
an .asp page containing the database results created
using the FP wizard.
The custom query is as follows:
SELECT * FROM Orders WHERE (Orders.Date > ::StartDate::
AND Orders.Date < ::EndDate:
Being StartDate y EndDate the names of the capturing Text
Boxes in the previous page.
When published and seen in browser the page does not
report any errors but does not filter the table, it means
I get all the records in the table.
What am I doing wrong? Please help!!
Thanks in advance.
with a field "Date" (date/time type, using General date
format).
I need to create a report with the orders in a period of
time. To do so I capture the start and end dates of the
period using two text boxes in an form that posts to
an .asp page containing the database results created
using the FP wizard.
The custom query is as follows:
SELECT * FROM Orders WHERE (Orders.Date > ::StartDate::
AND Orders.Date < ::EndDate:
Being StartDate y EndDate the names of the capturing Text
Boxes in the previous page.
When published and seen in browser the page does not
report any errors but does not filter the table, it means
I get all the records in the table.
What am I doing wrong? Please help!!
Thanks in advance.