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 there a better way to debug MySQL stored procedures?
|
I do something very similar to you. I'll usually include a DEBUG param that defaults to false and I can set to true at run time. Then wrap the debug statements into an "If DEBUG" block. I also use a logging table with many of my jobs so that I can review processes and timing. My Debug code gets output there as well. I include the calling param name, a brief description, row counts affected (if appropriate), a comments field and a time stamp. Good debugging tools is one of the sad failings of all SQL platforms. |
|||
|
|
|
There are GUI tools for debugging stored procedures / functions and scripts in MySQL. A decent tool that dbForge Studio for MySQL, has rich functionality and stability. |
|||||||||
|
|
Yes, there is a specialized tools for this kind of thing - MySQL Debugger. |
||||
|
|
|
I just simply place select statements in key areas of the stored procedure to check on current status of data sets, and then comment them out (--select...) or remove them before production. |
|||
|
|
|
The following "debug_msg" procedure can be called to simply output a debug message to the console.
this will result in the following output:
|
|||
|
|
|
I had use two different tools to debug procedures and functions:
|
|||
|
|
|
Another way is presented here http://gilfster.blogspot.co.at/2006/03/debugging-stored-procedures-in-mysql.html with custom debug mySql procedures and logging tables. You can also just place a simple select in your code and see if it is executed.
I got this idea from http://forums.mysql.com/read.php?99,78155,78225#msg-78225 Also somebody created a template for custom debug procedures on GitHub. See here http://www.bluegecko.net/mysql/debugging-stored-procedures/ https://github.com/CaptTofu/Stored-procedure-debugging-routines Was mentioned here How to catch any exception in triggers and store procedures for mysql? |
||||
|
|
|
MySql Connector/NET also includes a stored procedure debugger integrated in visual studio as of version 6.6, You can get the installer and the source here: http://dev.mysql.com/downloads/connector/net/ You can follow the annoucements here: http://forums.mysql.com/read.php?38,561817,561817#msg-561817 |
|||
|
|
|
Toad mysql. There is a freeware version http://www.quest.com/toad-for-mysql/ |
|||||
|
|
Hopper for MySQL - available at http://www.upscene.com A Stored Routine Debugger that allows you to step through, step over, step into, set breakpoints, evaluate variables etc. |
||||
|
|
