ADO.NET is Disconnected Architecture. DataReader is
connected Architecture, but DataReader is a part of
ADO.NET. How is it possible?
Answers were Sorted based on User's Feedback
Answer / rangarao
Ado.net is supports disconnected architecture as well as
it also supports connected architecture.
data set belongs to disconnected architecture.
data reader belongs to connected architecture.some problems will arrive while working with data reader,the problems are it will read records one by one only and there is no possibility to go for previous record ,it will always go to next records only.the connected architecture recommended to while working with transactions and working with bulk amount of data.
Is This Answer Correct ? | 22 Yes | 1 No |
Answer / arun
ADO.NET is not a disconnected architecture.
The dataset is a disconnected architecture and the
datareader is a connected architecture.
Is This Answer Correct ? | 26 Yes | 6 No |
Answer / 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 |
What is an orm, and why would you use one instead of plain old ado.net?
What is disconnected architecture in ado.net?
What is ado circle?
What are the different row versions available?
How can you add or remove rows from the datatable object of dataset?
What are the various methods provided by the DataSet object to generate XML?
What is ole data type?
What is the difference in record set and dataset?
What is ole db query?
Is it possible to edit data in Repeater control?
can we have multiple datatables in a datareader ?
18 Answers Fulcrum Logic, Infosys, Kale Consultants, Ness Technologies,
What are the different ado.net namespaces are available in .net?