Share via


Using a DataSet with Existing Data 

The DataSet is an in-memory relational representation of data that is independent of any data source. However, the DataSet can be used in conjunction with existing data in a data source when used with a .NET Framework data provider. A .NET Framework data provider uses a DataAdapter to fill the DataSet with data and schema information, as well as to resolve changes to the data at the data source.

See the following topics for more information about loading a DataSet and resolving changes back to the data source:

The DataSet can also read and write existing XML data. For more information, see Using XML in a DataSet.

See Also

Other Resources

Using DataSets in ADO.NET