Which method do you invoke on the DataAdapter control to
load your generated dataset with data?

Answers were Sorted based on User's Feedback



Which method do you invoke on the DataAdapter control to load your generated dataset with data?..

Answer / swapna

use the Fill method of the DataAdapter control and pass the
dataset object as an argument to load the generated data.

Is This Answer Correct ?    23 Yes 2 No

Which method do you invoke on the DataAdapter control to load your generated dataset with data?..

Answer / francis

use the Fill method of the DataAdapter control and pass the
dataset object as an argument to load the generated data.

Is This Answer Correct ?    12 Yes 0 No

Which method do you invoke on the DataAdapter control to load your generated dataset with data?..

Answer / m.mohan krishna

DataAdapters Fill() method.

Is This Answer Correct ?    10 Yes 0 No

Which method do you invoke on the DataAdapter control to load your generated dataset with data?..

Answer / pushpendra singh

Use Fill() method of DataAdapter class and pass the object
of dataset as an argument to load the generated data.

\\DataAdapter da=new DataAdapter();
\\DataSet ds=new DataSet();


da.Fill(ds);

Is This Answer Correct ?    7 Yes 0 No

Which method do you invoke on the DataAdapter control to load your generated dataset with data?..

Answer / debasis

DataAdapter.Fill(ds);

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ADO.NET Interview Questions

What are the different execute methods of Ado.Net?

0 Answers  


What is ado data control?

0 Answers  


Explain the namespaces in which .net has the data functionality class.

0 Answers  


Explain what a diffgram is and its usage ?

2 Answers  


How can we perform transactions in .net?

0 Answers  






What is the difference between Data adaptor and Data set?

0 Answers   HCL,


What is concurrency? How will you avoid concurrency when dealing with dataset? (One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid the problem?)

0 Answers  


What does ADO.NET consists of ?

7 Answers   TCS,


How to find the given query is optimised one or not?

0 Answers  


Is bulk insert faster than insert?

0 Answers  


How to add a check box or a dropdown list to a column in a datagrid?

0 Answers  


What is the difference between statement and preparedstatement interface?

0 Answers  


Categories