what is ADO.net DataSet
Hello Guys !
many people have the problem that what is ado.net Dataset. so this bolg very help full for you...
just read carefully...nd enjoy this blog..... :)
The ADO.NET DataSet contains DataTableCollection and their DataRelationCollection . It represents a collection of data retrieved from the Data Source. We can use Dataset in combination with DataAdapter Class . The DataSet object offers a disconnected data source architecture. The Dataset can work with the data without knowing the source of the data coming from. That is , the Dataset can work with a disconnected mode from its Data Source . It gives a better advantage over DataReader , because the DataReader is working only with the connection oriented Data Sources.
The Dataset contains the copy of the data we requested. The Dataset contains more than one Table at a time. We can set upData Relations between these tables within the DataSet. The data set may comprise data for one or more members, corresponding to the number of rows.
Data Source
The DataAdapter Object allows us to populate DataTables in a DataSet. We can use Fill method of the DataAdapter for populating data in a Dataset. The DataSet can be filled either from a data source or dynamically. A DataSet can be saved to an XML file and then loaded back into memory very easily. A DataSet can read and write data and schema as XMLdocuments. The data and schema can then be transported across HTTP and used by any application, on any platform that is XML-enabled.
I hope you all have clear that particular problem with this bolg.......
so guys. enjoy the ADO.net....................
Comments
Post a Comment