Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answer Posted / kamalakannan.a
SqlDataAdapter adap=new SqlDataAdapter("Select * from
temp",Conn);
DataSet ds = new DataSet();
//Here we load the table to dataset
adap.Fill(ds);
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is the default Timeout for SqlCommand.CommandTimeout property?
What is the difference between sqldatareader and sqldataadapter?
What are three methods for displaying data in a syncfusion datagrid
What is ado.net explain with diagram?
What is bubbled event?
What are the classes in System.Data.Common Namespace?
What is the default provider in ado.net?
Define atomicity?
How can we load multiple tables in a dataset?
Which object is used to add relationship between two Datatables?
Explain how to call the sql commands asynchronously in ado.net version 2.0?
How to load multiple tables into a dataset?
What is the difference between oledb sql server and oledbdotnet provider?
What is sqldatasource?
Describe datareader object of ado.net with example.