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 |
What are the steps you will take to improve performance?
What are the data access namespaces in .NET?
What are the 4 types of classes in ADO.NET?
How do we invoke queries from the application
what is trigger?
8 Answers Microsoft, Precept Technology,
How to aggregating data across related tables?
What is the difference between ado.net and entity framework?
What do you mean by performing asynchronous operation using command object?
How to check if a datareader is closed or opened?
What is the difference between data reader and data adapter?
Where is adodb dll located?
What is the purpose of using adodb?