What is the main difference between ADO and ADO.Net
Answer Posted / jyoti
ADO was a connected data access model, which means that when
a connection to the database is made, the connection remains
open until the application is closed.
ADO.NET is disconnected database access model, which means
when an application interacts with the database, the
connection is opened to serve the request of the
application, and is closed as soon as the request is completed.
All data is presented in XML, as compared to ADO.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is command class in ado.net?
What are the advantages and drawbacks of using ado.net?
Explain the role of data provider in ado.net?
Why is ADO.NET serialization slower than ADO ?
What is XML serialization
What are the major challenges in accessing data from a database?
What is the difference between sqlcommand and sqldataadapter?
What DataReader class do in ADO.NET ?
What are basic methods of dataadapter?
Does dapper use ado.net?
What are the features of ado.net?
What is namespace in ado.net?
What is Data Provider?
Explain the difference between data reader and data adapter?
Does entity framework use ado.net?