can anyone explain about stored procedure,Triggers and
transaction in php?

Answer Posted / jit

A stored procedure is simply a procedure that is stored on
the database server. MySQL developers have to date
unthinkingly written and stored their procedures on the
application (or web) server, mainly because there hasn't
been an option. That has been limiting. Some have claimed
that there are two schools of thought - one claiming that
logic should be in the application, the other saying it
should reside in the database. However, most professionals
would not bind themselves to one or other viewpoint at all
times. As always, there are times when doing either makes
sense. Unfortunately, some of the staunchest adherents of
the in the application school are only there because until
now they have had no choice, and it is what they are used to
doing.

Triggers are programmable events that react to queries and
reside directly on the database server. Triggers can be
executed before or after INSERT, UPDATE or DELETE
statements.There are several reasons to use triggers.
Triggers can automate a lot of stuff that you may have been
doing by hand before. The main reason I use triggers is to
maintain the integrity of one table that might rely on
another table. For example, if TableA references TableB and
a value from TableB gets deleted, you could have a trigger
setup to handle the data in TableA. Perhaps the data in
TableA should be reset to a generic value or maybe the data
should just be deleted completely.

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why echo is faster than print in php?

512


Explain about a search-friendly site looks like?

481


What is variable give example?

549


What are the data types in php?

536


What are the correct and the most two common way to start and finish a PHP block of code?

626






What are the features of php?

544


what is difference between PHP4 , PHP5

1894


What is php in full?

496


Does php pass arrays by reference?

561


Explain what is the difference between session and cookie?

534


What is the use of strip_tags() method?

543


How to store the uploaded file to the final location?

511


What are PHP Magic Methods/Functions. List them.

541


How to create an array in php?

542


What is difference between required and include in php?

471