Can you explain the difference between an ADO.NET Dataset
and an ADO Recordset?
Answer Posted / thangaraj.r
. ADO used connected data usage, while ADO.net used
disconnected data environment.
2. ADO used OLE DB to access data and is COM-based, while
ADO.net uses XML as the format for transmitting data to and
from your database and web application.
3. In ADO, Record set, is like a single table or query
result, while in ADO.net Dataset, can contain multiple
tables from any data source.
4. In ADO, it is sometime problematic because firewall
prohibits many types of request, while in ADO.net there is
no such problem because XML is completely firewall-proof.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What does aspcompat="true" mean?
How does output caching work in ASP.NET?
In which situation can you not use a viewstate?
What is ASLM?
A web service can only be written in .net? State whether true or false.
What is the postback property in asp.net?
Can we have multiple master pages in asp net?
What is inproc and outproc?
What is latest version of asp.net mvc? : Asp.Net MVC
What are the namespaces used in asp.net mvc? : asp.net mvc
What is advantage of code behind coding in ASP.NET?
What is the difference between CC and BCC?
How does ASP.NET framework maps client side events to Server side events.?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
What are the event handlers that can be included in the Global.asax file?