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 is Dataset Object?
What provider ADO.net use by default ?
5 Answers Accenture, BirlaSoft, Wipro,
If we are not returning any records from the database, which method is to be used?
What are the different execute methods of Ado.Net?
What are the differences between OLEDB and SQLClient Providers?
What are all the commands used with Data Adapter?
What is a serialized object?
What are all components of ADO.Net data provider?
how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?
What does adodb stand for?
HOW TO FILL GRID VIEW WITH OUT USING SQLDATASOURCE AND PROGRAMING?
Is ado.net dead?
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)