Hi,
In database the data's are in normal order. But while view in datagridview it has been getting ascending. I want the data's as it is in database. How can change this in C# for windows application.
adp = new OleDbDataAdapter("select * from food_test", conn);
ds = new DataSet();
adp.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
Regards,
Gopi A