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 steps you will take to improve performance?

0 Answers  


What are the data access namespaces in .NET?

0 Answers  


What are the 4 types of classes in ADO.NET?

5 Answers  


How do we invoke queries from the application

2 Answers  


what is trigger?

8 Answers   Microsoft, Precept Technology,






How to aggregating data across related tables?

0 Answers  


What is the difference between ado.net and entity framework?

0 Answers  


What do you mean by performing asynchronous operation using command object?

0 Answers  


How to check if a datareader is closed or opened?

1 Answers  


What is the difference between data reader and data adapter?

0 Answers  


Where is adodb dll located?

0 Answers  


What is the purpose of using adodb?

0 Answers  


Categories