What is the main difference between ADO and ADO.Net
Answer Posted / 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 |
Post New Answer View All Answers
What is the difference between OLEDB Provider and SqlClient?
What is connection pooling and what is the maximum pool size in ado.net connection string?
Explain the namespaces in which .net has the data functionality class.
What are the advantages of ado.net?
Is datareader faster than datatable?
What is the maximum pool size in ado.net connection string?
What are disadvantages of microsoft-provided data provider classes in ado.net?
Which parameter of ConnectionString is used to specify the name of the database?
How does entity framework work?
What is read only and forward only in ado.net?
What is the difference between ado.net and entity framework?
Can we connect two dataadapters to same data source using single connection at same time?
What are the objects of ado.net?
What is maximum pool size in ado.net connection string?
What is the difference between sqlcommand and sqldataadapter?