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 |
What is difference between .net core and .net standard?
I am looking for a fast track course (MAX 15 days) in MS.NET 3.5 and SQLSERVER 2005 in hyderabad or mumbai or pune. I am working in mumbai so cannot gor for long course. Can any body suggest me the best couching class or best faculty for the same. Thanks.
What is meant by .Net framework?
What are .net functions?
Describe difference between inline and code-behind?
Describe the use of following com+ services jit activation, queued components, object pooling.?
Give an example program for Getter /read-only methods in JAVA
What is reflection and what is it for?
What is typical about a windows process in regards to memory allocation in .net?
Please explain what inheritance is, and why it's important?
What is static constructor, when it will be fired?
Differences between dll and exe?