I cannot commit the changes that I have made to a database for some strange reason.
By following the example of one of the samples it should be as simple as
this.oleDbDataAdapter.Update( changesDataSet );
this.dataSet.AcceptChanges();
I am however using a dataTable so in my case I am trying out
marketTableAdapter.Update(aTSDataSet.Market);
aTSDataSet.Market.DataSet.AcceptChanges();
Any suggestion what to do, when dealing with a dataTable?
Imported from legacy forums. Posted by Pontus (had 1858 views)