Difference between ADO and ADO.net ?
Answer Posted / lucky
ADO and ADO.NET are different in several ways:
* ADO works with connected data. This means that when
you access data, such as viewing and updating data, it is
real-time, with a connection being used all the time.
This
is barring, of course, you programming special routines
to
pull all your data into temporary tables.
* ADO.NET uses data in a disconnected fashion. When you
access data, ADO.NET makes a copy of the data using XML.
ADO.NET only holds the connection open long enough to
either pull down the data or to make any requested
updates.
This makes ADO.NET efficient to use for Web applications.
It's also decent for desktop applications.
* ADO has one main object that is used to reference
data, called the Recordset object. This object basically
gives you a single table view of your data, although you
can join tables to create a new set of records. With
ADO.NET, you have various objects that allow you to
access
data in various ways. The Dataset object will actually
allow you to store the relational model of your database.
This allows you to pull up customers and their orders,
accessing/updating the data in each related table
individually.
* ADO allows you to create client-side cursors only,
whereas ADO.NET we don't have any cursor support in
ADO.NET.
* ADO allows you to persist records in XML
format, ADO.NET allows you to manipulate your data using
XML as the primary means. This is nice when you are
working
with other business applications and also helps when you
are working with firewalls because data is passed as HTML
and XML.
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
What is the difference between Datareader and Dataset?
Explain ado.net features?
Does ado.net use odbc?
Which property is used to check whether a DataReader is closed or opened?
What is a datagridview?
What is the default timeout specified for "sqlcommand.commandtimeout" property?
What are all components of ADO.Net data provider?
What is the procedure to call a Stored Procedure of Back End in ADO (ActiveX Data Object) and RDO (Remote Data Objects)?
What is the maximum pool size in ado.net connection string?
What is difference between connected and disconnected architecture in ado.net?
What is difference between datareader and dataadapter?
how to create a quiz software using 4 options to answer and how to check with answers in the database and award marks....
What is the default provider in ado.net?
What is the return type of executescalar?
What do you know about ADO.NET's objects and methods?