Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answer Posted / 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 |
Post New Answer View All Answers
How does entity framework work?
What is Data view?
How to generate a single aggregate?
What are the data access namespaces in .NET?
What is sqldatasource?
What is bubbled event?
What is the difference between connected and disconnected environment?
What is microsoft ado?
What are the difference between readonly vs. Const?
What is microsoft ado.net?
Which components of a data provider is used to retrieve, insert, delete, or modify data in a data source?
What is an orm, and why would you use one instead of plain old ado.net?
What is an ado connection?
What is the difference between Response.Expires and Reponse.ExpiresAbsolute?
Describe the command object and its method.