What is Dataset object? - DOT.NET

What is Dataset object?

Databases
          |
DataProviders
          |
DataAdapters
          |
DataSets

The DataSet is an in-memory cache of data retrieved from a data source. It consists of a collection of DataTable objects. These DataTables can be related to each other with the help of DataRelation objects.

DataSet object can not directly interact with Database. A DataAdapter object needs to be created to refer to the connection that is created.
What are the various objects in Dataset? - DOT.NET
The DataSet class exists in the System.Data namespace. The Classes contained in the DataSet class are:.....
How to save data from dataset? - DOT.NET
The modified data needs to be sent back to the database in order to save it...
Explain the difference between dataset clone and dataset copy - DOT.NET
Dataset.clone() duplicates (only) the structure of a dataset, without duplicating the data....
Post your comment