How do you debug MySQL stored procedures?
Posted
by Cory House
on Stack Overflow
See other posts from Stack Overflow
or by Cory House
Published on 2008-11-07T19:58:12Z
Indexed on
2010/03/26
7:33 UTC
Read the original article
Hit count: 180
My current process for debugging stored procedures is very simple. I create a table called "debug" where I insert variable values from the stored procedure as it runs. This allows me to see the value of any variable at a given point in the script, but is this is there a better way to debug MySQL stored procedures?
© Stack Overflow or respective owner