Pre Query & Post Query

How many times pre query and post query fired when we fetch 10 record from a table ?

Questions by Srikant.db

Showing Answers 1 - 18 of 18 Answers

These two are Query based write, once U fires the query before the query  Pre Query fires only one time when the query executed the 10 rows are executed which means post Query is also fires only one time

  Was this answer useful?  Yes

Pre Query fires only one time before the execution of the query , on the other hand Post Query fires after execution of the query, and one time for every rows returned. Thus if there are 5 returns rows in a query then Pre Query will fire for 1 time only but Post Query will fire for 5 times.

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