Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

11 Answers

up vote 17 down vote accepted

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.

share|improve this answer

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.

share|improve this answer
3  
I use dbForge debugger for debugging stored procedures - it is convenient. – Devid G Oct 1 '10 at 15:23
1  
but it works only for Windows and this is sad :( – Eugene Manuilov Feb 10 '12 at 18:08

Yes, there is a specialized tools for this kind of thing - MySQL Debugger.
enter image description here

share|improve this answer

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.

share|improve this answer

The following "debug_msg" procedure can be called to simply output a debug message to the console.

DELIMITER $$

DROP PROCEDURE IF EXISTS `debug_msg`$$
DROP PROCEDURE IF EXISTS `test_procedure`$$

CREATE PROCEDURE debug_msg(enabled INTEGER, msg VARCHAR(255))
BEGIN
  IF enabled THEN BEGIN
    select concat("** ", msg) AS '** DEBUG:';
  END; END IF;
END $$

CREATE PROCEDURE test_procedure(arg1 INTEGER, arg2 INTEGER)
BEGIN
  SET @enabled = TRUE;

  call debug_msg(@enabled, "my first debug message");
  call debug_msg(@enabled, (select concat_ws('',"arg1:", arg1)));
  call debug_msg(TRUE, "This message will show up no matter what the value of enabled is");
  call debug_msg(FALSE, "This message will never show up");
END $$

DELIMITER ;

CALL test_procedure(1,2)

this will result in the following output:

** DEBUG:
** my first debug message
** DEBUG:
** arg1:1
** DEBUG:
** This message will show up no matter what the value of enabled is
share|improve this answer

The first and stable debugger for MySQL is in dbForge Studio for MySQL

share|improve this answer

I had use two different tools to debug procedures and functions:

  1. dbForge - many functional mysql GUI.
  2. MyDebugger - specialized tool for debugging ... handy tool for debugging.vote
share|improve this answer

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.

SELECT 'Message Text' AS `Title`; 

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?

share|improve this answer

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

share|improve this answer

Toad mysql. There is a freeware version http://www.quest.com/toad-for-mysql/

share|improve this answer
I've used Toad for years but wasn't aware it had any special features for debugging sprocs. Can you clarify how you use Toad to do so? – Cory House Jun 5 '12 at 11:54
Looked at Toad 6.3 for mysql just now, looks like there is debug feature with breakpoints and everything. Do you mean that the debug feature is not working? Or maybe your version is older & doesn't include debug feature? – egna Jun 5 '12 at 16:26

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.