Which method do you invoke on the DataAdapter control to
load your generated dataset with data?
Answer Posted / 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 |
Post New Answer View All Answers
Give an example of a .net application which connects to microsoft access database using ado.net classes.
Which is faster datareader or dataadapter?
What is ado rdo dao in visual basic?
What is bubbled event?
Which object is used to add relationship between two Datatables?
What is aggregate root?
What is ado full form?
What is the difference between typed and untyped dataset?
What is data relation?
Define data adapter?
Describe datareader object of ado.net with example.
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?
Explain executenonquery?
how Sequence to connect and retrieve data from database using dataset?
Explain About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data.