Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
Answer / rahul ecimt
SqlDataAdapter da=new SqlDataAdapter ()
DataSet ds=new DataSet ()
da.Fill(ds)
| Is This Answer Correct ? | 4 Yes | 1 No |
What are the uses of Stored Procedure?
What providers does ado.net uses internally ?
What are the methods of XML dataset object?
I loaded the dataset with a table of 10 records. One of the records is deleted from the backend, how do you check whether all the 10 records were present while updating the data(which event and steps) and throw the exception 28 can datareader hold data from multiple tables?
how we can fire event in databound coulm in datagfrid withot using button?
What is the difference between data reader and data adapter?
What is data control techniques?
how to create a quiz software using 4 options to answer and how to check with answers in the database and award marks....
What is datasource in ado.net?
How to read data with the sqldatareader ?
What are the types of databinding?
How do you update a dataset in ado.net and how do you update database through dataset?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)