I have a query
OleDbCommand com = _
new OleDbCommand("select * from techs where actd0v between '" + _
TextBox1.Text + "' and '" + TextBox2.Text + "'" , con);
where textbox 1 and 2 are the specified dates in which I want to retrieve some date related to those dates. But when I'm trying to find the data between the given dates it gives me some dates which are not included in between them. Is there any pattern I need to specify to get all the dates which occur in between the specified dates.
I'm using ms access database for my project.