Build a dataset manually, the insert into the database

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?
 
W

William Ryan eMVP

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top