I trying to insert values to the dataset and i want the corresponding chages to be reflected in the database . I'm using this code:
_MyDatabase_1DataSet obj = new _MyDatabase_1DataSet();
MyDatabase_1DataSetTableAdapters.t1TableAdapter mytable = new testingconnection._MyDatabase_1DataSetTableAdapters.t1TableAdapter();
mytable.Fill(obj.t1);
obj.t1.Rows.Add("new value");
mytable.Update(obj);
But the change is getting reflected in the dataset and not in the database. When i use another instance of the dataset I am able to get the new row but the updation is not reflected in the database(.sdf)