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


Please Help Members By Posting Answers For Below Questions

Does executenonquery return a value?

536


What is disconnected architecture in ado.net?

497


What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?

535


What is connection pooling and what is the maximum pool size in ado.net connection string?

510


What is the use of sqldatareader class?

466






What is ole in vb?

501


Can we load multiple tables in a dataset?

536


What is a datagridview?

509


oledbdataadpter with ms access in c#.net giving exception System.Data.OleDb.OleDbException while writing adapter.update(dataset,"tabname"); how to update the database from dataset?

1922


If a table contains 20000 records . In a page at each time 100 records to be displayed what are the steps you will take to improve performance? Will you use dataset or datareader?

609


how Sequence to connect and retrieve data from database using dataset?

746


Explain how to find the given query is optimised one or not?

509


What is the meaning of object pooling?

586


What is the difference between SqlCommand and SqlCommandBuilder?

572


What is fill method in ado.net?

535