What are various in Dataset?

various objects in Dataset. - The DataSet object is a disconnected storage. - It is used for manipulation of relational data.
 
The DataSet object represents imported or linked data from an application e.g. manually created Pushpins etc. This object is invalidated once the application is closed. Dataset contains another collection known as DataTable object. Each DataTable contains a collection of DataRow objects and each DataRow is a collection of DataColumn objects.
 
A Data set is a collection of data,it contains a contents of single database table. In the table column represents a particular variable and each row defines to a given number of data sets.
 
A dataset is the data... usually in a table or can be XML or other types of data however it's only data... it doesn't really do anything.

And as you know a database is a container for the dataset usually with built in infrastructure around it to interact with it.
 
Dataset has a collection of Tables which has DataTable collection which further has DataRow DataColumn objects collections.
 
Back
Top