2

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

Midhat
  • 17,454
  • 22
  • 87
  • 114

1 Answers1

1

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

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.

Community
  • 1
  • 1
itsmatt
  • 31,265
  • 10
  • 100
  • 164
  • 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 Mar 26 '10 at 12:14
  • 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 Mar 26 '10 at 12:29