GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Microsoft  >  Ado.NET

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



June 06, 2008 12:01:30 #2
 sudheer27in   Member Since: June 2008    Total Comments: 1 

RE: What is Pull Model and Push Model in ADO.Net? What are the situations when we use one over the other?
 
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
     

 

Back To Question