Query: What is Dataset object?
Answers: 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 eachother 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.
|