If I have a trigger before the update on a table, how can I throw an error that prevents the update on that table?
|
Here is one hack that may work. It isn't clean, but it looks like it might work: Essentially, you just try to update a column that doesn't exist. |
||||
|
|
I know this is an old question, but as an up-to-date and less hacky alternative (as of v5.5 - possibly earlier, I cannot test) try the approach below:
|
|||
|
|
|
Unfortunately, the answer provided by @RuiDC does not work in MySQL versions prior to 5.5 because there is no implementation of SIGNAL for stored procedures. The solution I've found is to simulate a signal throwing a The hack could be implemented using triggers or using a stored procedure. I describe both options below following the example used by @RuiDC. Using triggers
Using a stored procedureStored procedures allows you to use dynamic sql, which makes possible the encapsulation of the error generation functionality in one procedure. The counterpoint is that we should control the applications insert/update methods, so they use only our stored procedure (not granting direct privileges to INSERT/UPDATE).
|
|||
|
|
|
The following procedure is (on mysql5) a way to throw custom errors , and log them at the same time:
|
||||
|
|