About DataAdapters ?

Answers were Sorted based on User's Feedback



About DataAdapters ?..

Answer / a.mustaq ahmed

Data Adapters provide in teraction between DataBase and
Dataset.It provite the functionalities like reading the
data from database,update the data,filter the data and wite
the data to Database

Is This Answer Correct ?    12 Yes 0 No

About DataAdapters ?..

Answer / nitya

DataAdapter acts like a mediator between Dataset and
Datastore(ie.Oracle,Sqlserver or Access).It has two methods
fill() and update().
For Ex:
SqlConnection con=new SqlConnection
("DataSource="databaseEngineName";Initial
Catalog="DataBaseName";User
Id="userName";Password="password";);
DataAdapter da=new DataAdapter(sqlcommand,con);
DataSet ds=new DataSet();
da.fill(ds,"tablename");
da.update(ds);

Is This Answer Correct ?    4 Yes 0 No

About DataAdapters ?..

Answer / manish singh

DataAdapters is important object of Ado.net. it is used to
transfer data to and from database.
DataAdapter is used to Interact with dataset.
DataAdapter has two method fill() and update().

Is This Answer Correct ?    2 Yes 0 No

About DataAdapters ?..

Answer / kamlesh sharma

DataAdapter acts like a mediator between Dataset and
Datastore
data adpters and datasets are disconnected model
through which we can store data on the local site and we
can perform menupulation on that

Is This Answer Correct ?    1 Yes 0 No

About DataAdapters ?..

Answer / sudheer kallipudi

DataAdapter is the bridge between the dataset and database.

Dataset is the Disconnected architecture,through
dataadapter we can get the data from database to dataset.
Once we get the data from database, connection will be
automatically disconnected.Just like Our mobile set.
Once we connected the charger to our mobile,the mobile will
charged.After batary will charge we will disconnect from
the adapter..like that.

Is This Answer Correct ?    1 Yes 0 No

About DataAdapters ?..

Answer / amit bhardwaj

Data Adapter is interface between database and dataset
whatever data is update that is handle by Data Adapter.

Is This Answer Correct ?    1 Yes 0 No

About DataAdapters ?..

Answer / devender kumar

SqlDataAdapter is a class of ado.net . This class can't be
inherited. It acts as a interface between our aplication
and database. The commonly used method of this class is Fill
() method which is used to fill the DataTable/DataSet with
the data fetched by query from the database.

Is This Answer Correct ?    0 Yes 0 No

About DataAdapters ?..

Answer / sunil

The data adapter we can use with data set.we can use data
adapter when the data is in disconnected form & we have to
apply some oprations on it.the data adapter is in the
tabular form & we can create any no of virtual tables to
fetch data.

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More ASP.NET Interview Questions

What is the difference between visual basic and asp.net?

0 Answers  


Give an example appropriate use forweb service as opposed to a non-serviced .NET component

1 Answers   Siebel,


What is the role of global.asax?

10 Answers   Infosys,


all asp.net interives questions

1 Answers  


How many languages are supported by .NET at present time?

0 Answers  






How can we update records in gridview?Is there any appropriate code for it?

0 Answers  


What is cached data phone?

0 Answers  


Can you set the session out time manually?

0 Answers  


How do you do validations. Whether client-side or server-side validations are better.?

5 Answers   Microsoft,


How many types of session in asp.net2.0

28 Answers   ABC, DOT, First Europa, HCL, iRely, TCS,


Error : The operation couldn’t be performed because ole db provider sqlncli10 for linked server was unable to begin a distributed transaction.00000110 oledb provider for linked server returned message the partner transaction manager has disabled its support for remote/network transactions. I can able to execute the stored procedure in sql server but when i run the web page getting error like above. I did all the configuration. what is the solution?

0 Answers  


What is the difference between client-side and server-side validations in ASP.NET?

0 Answers   Sans Pareil IT Services,


Categories