Twee oplossingen, beide geven een fout:
- Bel niet-bestaande opgeslagen procedure -
CALL non_existent_proc()
- Gebruik SIGNAAL statement om de fout op te heffen (MySQL 5.5).
Voorbeeld 1:
...
IF @found THEN
CALL non_existent_proc();
END IF;
...
Voorbeeld 2:
...
IF @found THEN
SIGNAL SQLSTATE '02000' SET MESSAGE_TEXT = 'Wrong data';`
END IF;
...