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

How many commands does the oledbcommand takes?what are they?

2 Answers  


Diff. b/w DataReader and DataSet?

8 Answers   Avon, Value Labs,


How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?

0 Answers   SwanSoft Technologies,


What are the different namespaces used in the project to connect the database?

3 Answers  


What is method to get XML and schema from Dataset? getXML() and get Schema ()

0 Answers  


What are the types of databinding?

0 Answers  


What is the difference between linq and ado.net?

0 Answers  


oledbdataadpter with ms access in c#.net giving exception System.Data.OleDb.OleDbException while writing adapter.update(dataset,"tabname"); how to update the database from dataset?

0 Answers   Infosys, Wipro,


What are the disadvantages of using datalist?

0 Answers  


Describe connection object in ado.net

0 Answers  


What is the difference between sqldatareader and sqldataadapter?

0 Answers  


What is openquery?

0 Answers  


Categories