What are major difference between classic ADO and ADO.NET?
Answers were Sorted based on User's Feedback
Answer / subramaniam
ADO is a com base library that supports only connected
data. This means that when we access the data (view, edit
and update) it is affected in real-time,since the
connection is being used all the time. ADO uses the objects
as reference data known as Recordset object. Hence it
basically gives a single table view of the data. We can
also join tables to create a new set of records in ADO.ADO
allows to create only client-side cursors. Using ADO we can
persist records in XML format and XML integration is not
possible.
ADO.NET is a CLR based library that supports disconnected
recordsets. This means that When we access data, ADO.NET
makes a copy of the data using XML and holds the connection
to pull down the data or to make any requested updates as
long as we need. The best method to follow is
ADO.NET.ADO.NET uses various objects known as Dataset that
allow to access data in various methods. Hence it allows to
store the relational model of the database and helps us to
access /update the data in each related table individually.
ADO.NET supports both client-side and server-side cursors.
Also the cursors are handled as classes in ADO.NET
providing a way to create efficient applications. Using
ADO.NET we can manupulate records in XML format. Also
ADO.NET 2.0 provides Multiple Active ResultSets (MARS)
which allows to have two datareader on one connection open
at sametime.
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / pranshu sharma
In ADO, the in-memory representation of data is the
recordset. In ADO.NET, it is the dataset. There are
important differences between them.
| Is This Answer Correct ? | 12 Yes | 1 No |
Can a DataReader be used as a DataSource for a GridView. If it is so how will you handle paging.
What is sqldatasource?
what is the syntax code for oldb to connect oracle
ADO and ADO.NET differences?
Differences between dataset.clone and dataset.copy?
What we do with the object of ado.net dataset after using it?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
How to check if the Dataset has records ?
can u tell me the why ADO does not support xml..
What does executequery return?
How is entity framework different from ado.net?
Difference between function and trigger?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)