I would like to know if anyone knows or even ever used any tool to perform a debug in stored procedures in linux .
>I am currently using the MySQL Workbench and the DBvisualizer , but as far as I know none of them provide procedure internally.
I would like to know if anyone knows or even ever used any tool to perform a debug in stored procedures in linux .
>I am currently using the MySQL Workbench and the DBvisualizer , but as far as I know none of them provide procedure internally.
Well, I ended up taking the following approach:
I installed the crossover (which implements wine as the base) in ubuntu 14.04 and then mydebugger (suggested by Anthony Accioly) and worked perfectly.I know it's not quite what you're looking for, but you can always do one:
SELECT CONCAT('O valor de x é', x);
In the middle of your stored procedure. This "prints" the value of a variable on the screen.
If you really need a debugger, I've found some tools like MyDebugger .