Just trying again (MERGE)

  • Thread starter Thread starter JMM B
  • Start date Start date
J

JMM B

Filling and updating a categories table:

da.fill(ds.categories)
....edit data on the client...
dschg = ds.getchanges() //update only the modified data.
da.update(dschg.categories)
....
how can i get the updated dataset to do the merge with the original
dataset?
dsupdated = ????
....
ds.merge(dsupdated)

thanks a lot.
 
Back
Top