ARTICLE

DataReader Vs DataSet?

Posted by Suresh Paldia Articles | ADO.NET in C# November 02, 2010
Confused how to use DataSet and How to use DataReader? I am giving out a solution to this.
Reader Level:

Confused how to use DataSet and How to use DataReader?

I am trying to give some of basic understanding about and differences between DataReader and DataSet of ADO.NET.

DataReader
  1. The ADO.NET DataReader is used to retrieve read-only(cannot update data back to datasource) and forward-only(cannot read backward/random) data from a database.
  2. Using the DataReader increases application performance and reduces system overheads. This is due to one row at a time is stored in memory. 
  3. You create a DataReader by calling Command.ExecuteReader after creating an instance of the Command object. 
  4. This is a connected architecture: The data is available as long as the connection with database exists.
  5. You need to open and close the connecton manually in code.
The following code statement is used to retrieve rows from a data source.

//opening connection is must
conn.open();
string SQLquery = "SELECT CustomerID, CompanyName FROM dbo.Customers";
SqlCommand cmd = new SqlCommand(SQLquery, conn);
// Call ExecuteReader to return a DataReader
SqlDataReader myReader = cmd.ExecuteReader();
//The Read method of the DataReader object is used to obtain a row from the results of the executed query. 
while(myReader.Read())
{
    Console.WriteLine("\t{0}\t{1}", myReader.GetInt32(0), myReader.GetString(1));
}
//Once you're done with the data reader, call the Close method to close a data reader:
myReader.Close();
//close the connection
conn.close();

DataSet
  1. The DataSet is a in-memory representation of data. 
  2. It can be used with multiple data sources. That is A single DataSet can hold the data from different data sources holdng data from different databases/tables.
  3. The DataSet represents a complete set of data including related tables, constraints, and relationships among the tables. 
  4. The DataSet can also persist and reload its contents as XML and its schema as XML Schema definition language (XSD) schema.
  5. The DataAdapter acts as a bridge between a DataSet and a data source for retrieving and saving data. 
  6. The DataAdapter helps mapping the data in the DataSet to match the data in the data source. 
  7. Also, Upon an update of dataset, it allows changing the data in the data source to match the data in the DataSet. 
  8. No need to manually open and close connection in code.
  9. Hence, point (8) says that it is a disconnected architecture. Fill the data in DataSet and that's it. No connection existence required
The following code statement is used to retrieve rows from a data source.

string SQLquery = "SELECT CustomerID, CompanyName FROM dbo.Customers";
// create DataSet that will hold your Tables/data
DataSet ds = new DataSet("CustomerDataSet");
//Create SqlDataAdapter which acts as bridge to put the data in DataSet,(data is table available by executing your SQL query)
SqlDataAdapter myAdapter = new SqlDataAdapter(SQLquery, conn);
//fill the dataset with the data by some name say "CustomersTable"
myAdapter.Fill(ds,"CustomersTable");

Login to add your contents and source code to this article
post comment
     

15 main Difference between DataSet and DataReader in asp.net http://www.webcodeexpert.com/2013/04/15-main-difference-between-dataset-and.html

Posted by lalit raghuvbanshi May 16, 2013

Thank you, It was very useful article for me actualy,

Posted by Davood Riazi Aug 19, 2012

thank you for your explain different between them

Posted by hilda r Feb 13, 2011

Thank You Sivaraman..
You can check the reply i posted on Akhil's doubt above your comment..

Posted by Suresh Paldia Nov 03, 2010

Thank You Akhil... and good question
When the query is executed, the first row is returned to the DataReader via the stream and is stored on the client. The DataReader's Read() method goes to database and reads the next row, stores it on client.
The stream then remains connected to the database, poised to retrieve the next record. So, For the Read() method to retrieve the next row, your connection to database must exist. So, using DataReader you can only handle one row at a time.
It does not store all records at client on query execution as in case of DataSet.

Now When to use a DataReader?

When populating a list or retrieving 10,000 records. When a huge amount of data must be retrieved to a business process, it can take a while to load a DataSet, pass the data to it from the database, and then store it in memory. However, in a Web application where hundreds of users may be connected, scalability would become a problem. If this data is intended to be retrieved and then traversed for business rule processing, the DataReader could speed up the process as it retrieves one row at a time and does not require the memory resources that the DataSet requires.

Let me know if you stil have any doubt.. I'l go in more detail if pos..

Posted by Suresh Paldia Nov 03, 2010
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
Join a Chapter
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.