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
What does ado stand for in ado.net?
What is dao and ado?
What are the pre-requisites for connection pooling?
How to check if a datareader is closed or opened? IsClosed()
What is a non query?
What are disadvantages of microsoft-provided data provider classes in ado.net?
Explain the architecture of ado.net?
What is the difference between ado.net and oledb?
How to load multiple tables into a dataset?
How do I delete a row from a DataTable?
How to create dynamic gridview?
What is the difference between sqlcommand and sqldataadapter?
What are the data providers used in ado.net
Explain how to pass multiple tables in datasets simultaneously?
How to check if the Dataset has records ?