I am having a problem with datetime format in a dataset.
In the database date format is:10/5/2009 10:10:10
but i get an error:FormatException, when attempting to fill the DataSet:
string query = "SELECT * FROM teklif";
c.db = new SQLiteDataAdapter(query, c.con);
c.db.Fill(ds); // Error Here...
dt = ds.Tables[0];
How do I resolve this issue?