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 difference between connected and disconnected architecture in ado.net?
How can we load multiple tables in a dataset?
What is different between sqlcommand object and command behavior object?
What is method to get XML and schema from Dataset? getXML() and get Schema ()
What is acid in ado.net?
What is the difference between Optimistic and Pessimistic locking?
What are the advantages using ado.net?
What are three methods for displaying data in a syncfusion datagrid
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
What is the use of ADO.NET and XML web services?
What is row state?
Explain sqlconnection object?
What are the ado.net connection pooling parameters?
Explain what are acid properties?
What is difference between executequery and executeupdate?