What is the main difference between ADO and ADO.Net

Answers were Sorted based on User's Feedback



What is the main difference between ADO and ADO.Net..

Answer / hhh

ADO- Connection-Oriented Architecture
Use Record Set
Communicate in Binary mode

Ado.net Dis-connected architecture
Use DataSet,Adapter
Parse Data in XML mode

Is This Answer Correct ?    27 Yes 0 No

What is the main difference between ADO and ADO.Net..

Answer / 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

What is the main difference between ADO and ADO.Net..

Answer / babina

The old ADO (ActiveX Data Object) has evolved to ADO.NET in
the .NET Framework. The ADO.NET object is a lightweight
object. The ADO Recordset was a huge object in ADO. It
provided the ability to support multiple types of cursors.
It provided fast lightweight "firehose" cursor and also
supported a disconnected client-side cursor that supported
tracking, optimistic locking, and automatic batch updates of
a central database. However, all of this functionality was
difficult to customize.
ADO.NET breaks the functionality of the ADO object to
multiple classes, thereby allowing a focused approach to
developing code. The ADO.NET DataReader is equivalent to the
"firehose" cursor. The DataSet is a disconnected cache with
tracking and control binding functionality. The DataAdapter
provides the ability to completely customize how the central
data store is updated with the changes to a DataSet.

Is This Answer Correct ?    6 Yes 1 No

What is the main difference between ADO and ADO.Net..

Answer / ramakrishna reddy

ADO- Connection-Oriented Architecture
Use Record Set
Communicate in Binary mode

Ado.net Dis-connected architecture
Use DataSet,Adapter
Parse Data in XML mode

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

Which name space is used to get assembly details?

0 Answers  


What does ado stand for?

0 Answers  


i making a project using windows application c#, i want to show user name, password, and one button login. i wanna make it with sealed class .how its possible . when i clicked my login button all project should be open. pls cleare me.

1 Answers  


Which is faster entity framework or ado.net?

0 Answers  


What is the DataTableCollection?

0 Answers  






Why is ADO.NET serialization slower than ADO ?

0 Answers   NA,


What is the advantage of ado.net?

0 Answers  


What are the different execute methods of Ado.Net?

0 Answers  


What is sqldatareader?

0 Answers  


What do you mean by performing asynchronous operation using command object?

0 Answers  


what is different between SqlCommand object and Command Behaviour Object

3 Answers  


Give few examples of datareader that is used in different dataproviders.

0 Answers  


Categories