cnn = new OleDbConnection(conStr);
cnn.Open();
da = new OleDbDataAdapter("select * from " + sTableName, cnn);
ds = new DataSet();
da.Fill(ds, sTableName);It works till here. Now to save data i want to get field name
lssql = "update " + tablename + " set " + fieldName + "='" +
txtDescription.Text + "'";savedata codes goes here....In my table i have two field like ID and description. How can i get 2nd field name by coding? I am using VB2005, C#, OleDb commandThanks in advantage.BT