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 do you know about ado.net's objects?

0 Answers  


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

5 Answers  


What is namespace in ado.net?

0 Answers  


Define ado.net?

0 Answers  


What are the different row versions available in table?

0 Answers  






Which namespaces are used for data access?

0 Answers   SwanSoft Technologies,


What is difference between datagridview and datagrid control in winforms?

0 Answers  


What is typed dataset ?

0 Answers   NA,


Which keyword is used to accept variable number of parameters?

0 Answers  


If i am expecting a single result from sqlserverdatabase then what command should i follow ?sqlcommand.executereader (commandbehaviour.singleresult)or sqlcommand.executescalar()

4 Answers  


What are the essential features of ado.net?

0 Answers  


How we can provide data to ado.net?

0 Answers  


Categories