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

Where is adodb dll located?

0 Answers  


What is the significance of CommandBehavior.CloseConnection ?

0 Answers   NA,


What are the ado.net connection pooling parameters?

0 Answers  


What is ado connection?

0 Answers  


Explain what are the steps to connect to a database?

0 Answers  


What is ado code?

0 Answers  


What is data access pattern?

0 Answers  


What is difference between dataset and datatable?

0 Answers  


Describe the disconnected architecture of ADO.NET’s data access model.

0 Answers  


What is the executescalar method?

0 Answers  


Describe briefly an ADO.NET Dataset ?

0 Answers   Siebel,


How can we check that some changes have been made to dataset since it was loaded?

0 Answers  


Categories