How to query datetime based on date in c# - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T14:01:53Zhttp://stackoverflow.com/feeds/question/893639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/893639/how-to-query-datetime-based-on-date-in-c1How to query datetime based on date in c#nagaraju2009-05-21T15:51:03Z2009-05-22T20:42:45Z
<p>I have an MS-Access database with a DateTime column.<br />
ex: <code>03/08/2009 12:00:00 AM</code>.</p>
<p>I want query based on date like:</p>
<pre><code>select * from tablename where date='03/08/2009'
</code></pre>
<p>I want display data as <code>03/08/2009 12:00:00 AM</code>.</p>
<p>How would I write this query in C#?
Please help me.</p>
http://stackoverflow.com/questions/893639/how-to-query-datetime-based-on-date-in-c/893751#8937512Answer by ichiban for How to query datetime based on date in c#ichiban2009-05-21T16:14:09Z2009-05-21T16:14:09Z<p>Here's some sample code using C# in a console app to access an Access DB. You can adapt this code to windows or ASP.NET if needed.</p>
<pre><code>/* Replace with the path to your Access database */
string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;User Id=admin;Password=;";
try
{
using(OleDbConnection conn = new OleDbConnection(connectionString)
{
conn.Open();
string myQuery = "Select * FROM tableName WHERE date='03/02/2009'";
OleDbCommand cmd = new OleDbCommand(myQuery, conn);
using(OleDbDataReader reader = cmd.ExecuteReader())
{
//iterate through the reader here
while(reader.Read())
{
//or reader[columnName] for each column name
Console.WriteLine("Fied1 =" + reader[0]);
}
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
</code></pre>