ADO.NET is Disconnected Architecture. DataReader is
connected Architecture, but DataReader is a part of
ADO.NET. How is it possible?
Answer Posted / debakant mohanty.
ADO .net is a disconnected arcitecture and data reader is a
connected architecture.It is possible because the data is
retreived from the database when there is a connection
established and is a stored in a temporary storege area
called data set and are retrieved from there by data
reader.That is simple.
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
Is ado.net an orm?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
How to perform sorting on a table in ADO.NET?
What is ado recordset?
What are the advantage of ado.net?
List all the steps in order, to access a database through ado.net?
What are the different methods available under the sqlcommand class to access the data?
How to generate a single aggregate?
What are the different row versions available in table?
Define Execute Reader?
What is isolation?
What are the advantages of ado.net?
Describe the disconnected architecture of ADO.NET’s data access model.
What does executequery return?
If a table contains 20000 records . In a page at each time 100 records to be displayed what are the steps you will take to improve performance? Will you use dataset or datareader?