Hi..........
I am using ado.net in our application and face a problem in Datareader and Data Set. Define the Datareader? ADO.NET is Disconnected Architecture. DataReader is connected Architecture, but DataReader is a part of ADO.NET. How is it possible?
Loading
Sam HobbsPosted Dec 13, 2011, 2:45 PM
Pravin GhadgePosted Dec 13, 2011, 12:18 PM
ADO.Net is the new database technology of the .NET (platform, and it builds on Microsoft ActiveX Data Objects.
ADO.net has both connected & disconnected architecture.
The architecture of ADO.net in which data retrieved from database can be accessed even when connection to database was closed is called as disconnected architecture
The architecture of ADO.net, in which connection must be opened to access the data retrieved from database is called as connected architecture. Connected architecture was built on the classes connection, command, datareader and transaction.
Satyapriya NayakPosted Dec 13, 2011, 12:14 PM
Please refer Our recommended articles
Thanks