views:

39

answers:

1

Is it possible to step through a mysql stored procedure, watching the values of variables at each step.

+1  A: 

See this related question for some ideas related to debugging stored procedures:

http://stackoverflow.com/questions/273437/how-do-you-debug-mysql-stored-procedures


Edit:

I tried out the trial of Debugger for MySQL and it looks promising. You might give that a try.

itsmatt
yeah i saw that post. that approach is plain clumsy. but i did that anyway. was just looking for a better way. will definitely give this software u mentioned a try
Midhat
The trial isn't bad. I was able to put together a CALL line and set breakpoints and check the values along the way.
itsmatt
@itsmatt working pretty good. thanks
Midhat