Can you explain the difference between an ADO.NET Dataset
and an ADO Recordset?

Answers were Sorted based on User's Feedback



Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?..

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

Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?..

Answer / kvnvani

1. In ADO recordset(in memory representation of data) looks
like single table
where as
in ADO.NET dataset(in-memory representation of data) is a
collection of one or more tables(use JOIN Query).
2. In ADO you communicate with the database by making the
calls to an OLEDB Provider
where as
in ADO.NET you communicate with the database through a Data
Adapter(an OledbDataAdapter,SQLDataAdapter,OdbcDataAdapter
or OracleDataAdapter object) which make calls to an OLEDB
Provider or the API's provided by the underlying datasource.
3. In ADO recordset objects operate in a fully connected
state
where as
in ADO.NET dataset operate in disconnected state.
4. ADO requires COM marshalling to transmit records sets
among components, does require that ADO data types be
converted to COM data types.
where as
ADO.NET does not require data-type conversions.
5. In ADO it is sometime sproblematic firewalls( firewalls
are typically configured to allow HTML text to pass, but to
prevent system-level requests (such as COM marshalling)
from passing) prevent many types of requets
where as
in ADO.NET datasets using XML, firewalls can allow datasets
to pass.

Is This Answer Correct ?    4 Yes 1 No

Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?..

Answer / sathish

Recordset is that where we can access only one table
information. Recordset is also that we can access record
sequentially and any record in middle has to go thro all
first beginning records.So only sequential access is alowwed.

Dataset is we can point to multiple tables.Any record can be
accessed at any instant of time.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What are the 4 tenants of SOA/D.

1 Answers  


What is stateless asp or asp.net ?

2 Answers   Accenture, BirlaSoft,


What is asp.net mvc5? : Asp.Net MVC

0 Answers  


what is the difference between console.writeline &console.output.writeline?

2 Answers  


What are main return types supported in Web API?

0 Answers  






When do you set "<IDENTITY impersonate="true" />" ?

1 Answers  


Advantage of data Reader?

2 Answers  


How can you provide an alternating color scheme in a Repeater control?

1 Answers  


what is session . how it is use ?

3 Answers   TCS,


what are the levels of securities need to be considered for the finincial web application?

1 Answers  


What's the ASP.Net Application life cycle?

0 Answers   Wipro,


What asp.net control can embed xaml into asp.net pages?

0 Answers  


Categories