What is the use of dataadapter ?
Answers were Sorted based on User's Feedback
DataAdapter is an object which creates a bridge between the
database and front end. It opens and closes connections
automatically. Fills the dataset with table and values from
database and update the database from dataset.
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / manirajsahu
These are objects that connect one or more Command objects
to a Dataset object. They
provide logic that would get data from the data store and
populates the tables in the
DataSet, or pushes the changes in the DataSet back into the
data store.
√ An OleDbDataAdapter object is used with an OLE-DB provider
√ A SqlDataAdapter object uses Tabular Data Services with
MS SQL Server.
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / rohan patel india
data adapter provide communication between datasource and
dataset.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / amy
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.
The DataAdapter can perform Select , Insert , Update and
Delete SQL operations in the Data Source.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / biswajit
its a part of Ado.net .its use to provide the
communication between dataset and the datasoursece .
it perform the select,insert, update and delete SQL
operation in the data source .
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how you can send the result back in JSON format in MVC?
What is entitytypes? : Entity framework
What is entity graph? : Entity framework
Tell me the best web-sites for Learning the ASP DOT NET.
How to make sure Client Validation is enabled in ASP.Net MVC
Explain Bundle.Config in ASP.Net MVC4?
Is the following route definition a valid route definition? {controller}{action}/{id}
What is display mode in mvc?
What is a razor file?
Is mvc 4 supporting windows azure sdk (software development kit) ?
What is ViewStart Page in ASP.Net MVC?
How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?