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
Explain the various objects in dataset.
What is a sqldataadapter?
What is different between sqlcommand object and command behavior object?
What is ado.net in vb net?
What does executereader return?
What are the types of databinding?
Explain the differences between oledb sql server, oledbdotnet provider?
What is the role of data provider in ado.net?
What is sqlconnection and sqlcommand?
Difference between sqlcommand and sqlcommandbuilder?
What is ado.net explain with diagram?
What are the core objects of ADO.NET?
What providers does Ado.net uses?
If we are not returning any records from the database, which method is to be used?
Which architecture does Datasets follow?