What is Pull Model and Push Model in ADO.Net? What are the situations when we use one over the other?

Questions by Maulik Bhatt

Showing Answers 1 - 6 of 6 Answers

bornToLose

  • Sep 22nd, 2007
 


Pull model is used to take out the element/object from Database.
Push model is used to insert the element at top position in table to database through object.

If we want to delete the top most record pull method is used over push. Similar to stack operation

Pull Method: when we directely interact with the data through data drivers this method is used.

        ADO COMPONENT  <-------->  DATABASE

Push Method: when we get data while interacting using DataSets, this type is called push method

         ADO COMPONENT  <---->   DATASET   <---->  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