Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Where is adodb dll located?
What is the significance of CommandBehavior.CloseConnection ?
What are the ado.net connection pooling parameters?
What is ado connection?
Explain what are the steps to connect to a database?
What is ado code?
What is data access pattern?
What is difference between dataset and datatable?
Describe the disconnected architecture of ADO.NET’s data access model.
What is the executescalar method?
Describe briefly an ADO.NET Dataset ?
How can we check that some changes have been made to dataset since it was loaded?