Update a DataSet

  • Thread starter Thread starter Kyle Rowe
  • Start date Start date
K

Kyle Rowe

How do I Update a dataset into a DB if the orginal SqlDataAdapter I used to
fill the dataset is gone?
 
Kyle,

Just create it new.
That is not an abnormal implementation.

It is even done as:

Fill a a dataset from an access database while the the changes are set to
unchanged
Create a dataadapter for SQL Server
Update than the dataset to the SQL Server

I hope this helps?

Cor
 
Back
Top