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 provider ado.net use by default? Explain the role of data provider in ado.net?
How to identify the controls which can be used for binding data?
What is an ado connection?
What is microsoft ado.net?
What is method to get XML and schema from Dataset? getXML() and get Schema ()
What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?
Can we connect two dataadapters to same data source using single connection at same time?
What is a string variable?
Why edit is not possible in repeater?
What is bubbled event?
What is difference between datareader and dataadapter?
What are the data providers used in ado.net
What is ado rdo dao in visual basic?
What is the difference between connected and disconnected environment?
What is data relation in ado.net?