Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answer Posted / pushpendra singh
Fill() method of DataAdapter
SqlDataAdapter da=new SqlDataAdapter();
DataSet ds=new DataSet();
da.Fill(ds);
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
If a table contains 20000 records. In a page at each time 100 records to be displayed.
What are the different layers of ado.net?
What is data control techniques?
What is the difference between typed and untyped dataset?
Which is better ole db or odbc?
What are the major challenges in accessing data from a database?
How do you update a dataset in ado.net?
What is the advantage of ado.net?
What are the different methods by which we can populate a dataset?
What is different between sqlcommand object and command behavior object?
Which is faster datareader or dataadapter?
What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
What is microsoft ado?
What are dcl commands?
List all the steps in order, to access a database through ado.net?