Which method do you invoke on the DataAdapter control to load your generated dataset with data?

Showing Answers 1 - 3 of 3 Answers

Binda Joshi

  • Mar 9th, 2005
 

dataadapter.fill(dataset)

  Was this answer useful?  Yes

B.Shiva Kumar

  • Mar 16th, 2005
 

dataAdapter.Fill(dataSet)

  Was this answer useful?  Yes

Sachin Ambekar

  • Mar 25th, 2005
 

dataadapter.fill(ds)The beauty of this method is it automatically implicitly opens the connection to database and closes it once done.We dont need to worry about opening and closing the connection to the database.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions