Answer Posted / tahir
The DataReader object is the ADO.NET counterpart of the read-only, forward-only default ADO cursor. The DataSet is a container that can be programmatically filled with static snapshot of data. In this sense, it can be seen as a repository of disconnected recordsets. There's no Recordset component in the ADO.NET object model, but the DataTable object is the .NET double of a disconnected recordset.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What are the advantages and disadvantages of using datalist?
Explain the difference between an ado.net dataset and an ado recordset?
Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?
What is ado.net in vb net?
What are the advantages and drawbacks of using ado.net?
What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)
What is executenonquery ado.net?
What is the use of connection object in ado.net?
What are typed and untyped dataset?
Explain the basic use of "dataview" and explain its methods.
Why is stored procedure used in ado.net?
What is the difference between Optimistic and Pessimistic locking?
What are good ado.net object to replace to ado recordset object.
how Sequence to connect and retrieve data from database using dataset?
How to read data with the sqldatareader ?