DataSet and DataReder in Ado.net
What is difference between DataSet and DataReader in ado.net.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Arun ChoudharyPosted Sep 19, 2012, 7:28 AM
Dataset is a connectionless service and Dataset is used to store the data. It is stored collection of tables. Dataset is bulky object that require a lot of memory space. We can say that dataset is a small database that stores the schema and data.
DataReader is a read only or forward only recordset. It is a connected service. It fetch one row at a time.
More Info:
http://www.c-sharpcorner.com/UploadFile/john_charles/DataReaderAndDataSet03102006134650PM/DataReaderAndDataSet.aspx
http://www.c-sharpcorner.com/UploadFile/718fc8/working-with-dataset-in-ado-net/
http://www.c-sharpcorner.com/uploadfile/mahesh/datareader-in-ado-net/
Satyapriya NayakPosted Sep 20, 2012, 12:16 PM
Rohit SharmaPosted Sep 19, 2012, 7:29 AM