In access i used this and its works fine:
(tblReservations_Dates.Date) Between #" & dteBegDate & "# And #" & dteEndDate & "#
Using MySQL I used this:
(tblReservations_Dates.Date) Between '" & dteBegDate & "' And '" & dteEndDate & "'
However the data is not displayed I was just wondering if this is the correct syntax for SQL Statement for comparing dates?