Build a dataset manually, the insert into the database

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

I have a dataset containing multiple tables that has been serialised
and sent to me over soap.

I have reconstructed the dataset object and now need to insert its
containing data into a local database of the same structure.

How do I do this?
 
First, verify that you saved the rowstate information (diffgram) in the
dataset by checking if it .HasChanges.

If it does, you just need to build a dataadapter that has a valid .Update
logic (insert/delete/update) and call update on the dataset/datatable.
 
Back
Top