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 are typed and untyped dataset?
What is oledb connection?
What is the difference between Datareader and Dataset?
Which is the feature of ado.net?
What we do with the object of ado.net dataset after using it?
Which is faster ado.net or linq?
What is the difference between Response.Expires and Reponse.ExpiresAbsolute?
how we can fire event in databound coulm in datagfrid withot using button?
What is Dataset Object?
What are the core objects of ADO.NET?
What is difference between datatable and dataset?
What is connection pooling and what is the maximum pool size in ado.net connection string?
Can we do database operations without using any of the ado.net objects?
Is bulk insert faster than insert?
What is ado connection?