L
Luis C. Uribe
The is a bad bug in this method where after updating the DataSet follows
this statement:
dataSet.AcceptChanges()
It is not only unnecessary, it wipes out any pending updates for other
tables.
If one has several tables in the DataSet, after updating the first one the
updates that may follow for the other tables will find nothing to update due
to the above line. Comment it out to avoid the problem.
Luis C. Uribe
this statement:
dataSet.AcceptChanges()
It is not only unnecessary, it wipes out any pending updates for other
tables.
If one has several tables in the DataSet, after updating the first one the
updates that may follow for the other tables will find nothing to update due
to the above line. Comment it out to avoid the problem.
Luis C. Uribe