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 / swapna
use the Fill method of the DataAdapter control and pass the
dataset object as an argument to load the generated data.
Is This Answer Correct ? | 23 Yes | 2 No |
Answer / francis
use the Fill method of the DataAdapter control and pass the
dataset object as an argument to load the generated data.
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / pushpendra singh
Use Fill() method of DataAdapter class and pass the object
of dataset as an argument to load the generated data.
\\DataAdapter da=new DataAdapter();
\\DataSet ds=new DataSet();
da.Fill(ds);
Is This Answer Correct ? | 7 Yes | 0 No |
How many commands does the oledbcommand takes?what are they?
Diff. b/w DataReader and DataSet?
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures?
0 Answers SwanSoft Technologies,
What are the different namespaces used in the project to connect the database?
What is method to get XML and schema from Dataset? getXML() and get Schema ()
What are the types of databinding?
What is the difference between linq and ado.net?
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?
What are the disadvantages of using datalist?
Describe connection object in ado.net
What is the difference between sqldatareader and sqldataadapter?
What is openquery?