Tool to debug a stored procedure in linux

1

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.

    
asked by anonymous 27.02.2015 / 20:42

2 answers

1

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.

    
22.03.2015 / 16:33
2

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 .

    
27.02.2015 / 21:01