I've been hearing about triggers, and I have a few questions.
What are triggers?
How do I set them up?
Are there any precautions, aside from typical SQL stuff, that should be taken?
|
|
|
Triggers allow you to perform a function in the database as certain events happen (eg, an insert into a table). I can't comment on mysql specifically. Precaution: Triggers can be very alluring, when you first start using them they seem like a magic bullet to all kinds of problems. But, they make "magic" stuff happen, if you don't know the database inside out, it can seem like really strange things happen (such as inserts into other tables, input data changing, etc). Before implementing things as a trigger I'd seriously consider instead enforcing the use of an API around the schema (preferably in the database, but outside if you can't). Some things I'd still use triggers for
Things you wouldn't want to use triggers for
|
||||
|
|
|
From dev.mysql.com, a trigger is
The syntax to create them is also documented at that site. Briefly,
And they provide an example:
You at least need to abide by all the restrictions on stored functions. You won't be able to lock tables, alter views, or modify the table that triggered the trigger. Also triggers may cause replication problems. |
|||
|
|
|
A trigger is a named database object that is associated with a table and that is activated when a particular event occurs for the table.
|
|||
|
|
|
This question is old and other answers are very good, but since the user asked about precautions that should be taken, I want to add something:
|
|||
|
|