B
bic
The current CF doesn't support getChanges as in the full framework.
Doing an update to a dataset you can do
1. DA.Update(Ds)
or
2. DA.Update(DS.GetChanges) * Only in Full Framework.
Doing number 2 should be much faster if there are a lot of record
in the dataset. I am wondering how the CF Update the dataset.
Does it loop through all the rows in the dataset and check for rowstate
for delete/changed/added then updated to the database? If so.. I am
concern if I have several thousand records.. this can be a very slow process..
Doing an update to a dataset you can do
1. DA.Update(Ds)
or
2. DA.Update(DS.GetChanges) * Only in Full Framework.
Doing number 2 should be much faster if there are a lot of record
in the dataset. I am wondering how the CF Update the dataset.
Does it loop through all the rows in the dataset and check for rowstate
for delete/changed/added then updated to the database? If so.. I am
concern if I have several thousand records.. this can be a very slow process..