Is there a MySQL feature like SQL Server 2005's TRY/CATCH blocks?
mysql
Solution
You can declare handlers for specific error results.
Problem
I'm thinking about porting a database from Sql Server 2005 to MySQL. I've become accustomed to using SQL Server's TRY/CATCH block in stored procedures. Does MySQL have something similar, or am I going to be forced to go back to the old-school "check the error return after every statement, and issue a goto if it failed" style of programming?