What are good ADO.NET object(s) to replace the ADO
Recordset object.
Answer / ch.raviteja
The differences includes
In ADO, the in-memory representation of data is the Recordset.
In ADO.net, it is the dataset
A recordset looks like a single table in ADO
In contrast, a dataset is a collection of one or more tables in ADO.net
ADO is designed primarily for connected access
ADO.net the disconnected access to the database is used
In ADO you communicate with the database by making calls to an OLE DB provider.
In ADO.NET you communicate with the database through a data adapter (an OleDbDataAdapter, SqlDataAdapter, OdbcDataAdapter, or OracleDataAdapter object), which makes calls to an OLE DB provider or the APIs provided by the underlying data source.
In ADO you cant update the database from the recordset. ADO.NET the data adapter allows you to control how the changes to the dataset are transmitted to the database.
| Is This Answer Correct ? | 2 Yes | 1 No |
How many types of transactions are there in com + .net ?
What is a design pattern and what is it for?
i m fresher,hav SQL knowledge but in my ofc. i hav to work on dotnet. so plz tell me how to learn it,? from where to stat? i hav C prog. knowledge, ASP.net
What is the concept of inheritance in .net?
Explain what is the difference between web application and enterprise application?
What is meant fulltrust?
What are the namespace available in .net?
Interop Services?
Explain what is the difference between response.redirect & server.transfer?
Explain manifest & metadata.
What is assembly in .net?
What is boxing and un-boxing in .net?