Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?

Answers were Sorted based on User's Feedback



Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?..

Answer / irfanpathan

Dataset is used to get the data from database by creating
objects..After getting data we should store that data.we
use SQLDATAADAPTER for storing data..after storing we will
give connection with SQLCONNECTION class.and then we bind
the data using DATABIND..This total process is appliued
with DATASET.
where as DATAREADER is also for getting data through
database.But it is faster in access.we wont use DATAREADER
because of performance problem..
i too dont know record set..

Is This Answer Correct ?    9 Yes 3 No

Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?..

Answer / lavanya

With Dataset can retrive the data from two database like
oracle, SQl and merge in one table. Record set is not
possible.

All representation of dataset is using XML while record set
use COM.

Recordset can not be transmitted on HTTP while Dataset can
be.

Is This Answer Correct ?    6 Yes 1 No

Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?..

Answer / lovenier

We use DataSet to retrieve data from database in disconnected mode, but in the data RecordSet it retrieve data in connected mode..
DataSet is designed to work without any continuing connection to the orignal database, but RecordSet is Required a connected environment.
Data in DataSet is bulk loaded, rather than being loaded on demand.
DataSet have no concept of Cursor and current pointer, you can use for each loops to move through data.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How can we Deploy a website?

2 Answers  


How to execute a stored procedure.and how to call it form a asp page

2 Answers  


I have one application, one user purchase some products in my application? and another person came he is also purchase some products?how can we identify which user purchase which items? my answer is by using session id? but i dont know how? can u give me programming for that?

1 Answers  


Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?

0 Answers  


How can we create pie chart in asp.net?

0 Answers  






What are the main components of the ADO object model? How are they used?

2 Answers   HCL, Syntax Softtech,


can we transfer data from one page to another page using viewstate if so how?if not y?

1 Answers   Patni,


What is a web farm?

0 Answers  


Are there resources online with tips on asp to asp.net conversions?

0 Answers  


what are the Custom controls in asp.net?

0 Answers   MCN Solutions,


How do I publish my asp.net application to my isp's web server?

0 Answers  


What is difference between web api and web services?

0 Answers  


Categories