Answer Posted / sharat
DataAdapter is a part of the ADO.NET Data Provider.
DataAdapter provides the communication between the Dataset
and the Datasource. We can use the DataAdapter in
combination with the DataSet Object. That is these two
objects combine to enable both data access and data
manipulation capabilities.
dataadapter
The DataAdapter can perform Select , Insert , Update and
Delete SQL operations in the Data Source. The Insert ,
Update and Delete SQL operations , we are using the
continuation of the Select command perform by the
DataAdapter. That is the DataAdapter uses the Select
statements to fill a DataSet and use the other three SQL
commands (Insert, Update, delete) to transmit changes back
to the Database. From the following links describe how to
use SqlDataAdapter and OleDbDataAdapter in detail.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What is the difference between linq and ado.net?
What is XML serialization
Does executenonquery return a value?
What DataReader class do in ADO.NET ?
What is executenonquery ado.net?
What is the difference between Dataset. clone and Dataset.copy?
What is an ado?
Do you use stored procedure in ado.net?
What is namespace in ado.net?
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?
What is execute reader in ado.net?
differance between ADO vs ADO.Net?
What is sql command in ado net?
Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
What is difference in record set and dataset?