I have a stored procedure that works in the mysql> terminal, but when I try to run it through my application it doesn't work.
I don't get any error messages or anything.
If I try to execute the sp through MySql Query Browser the response is simply :
"Query canceled."
This particular SP is just a simple update command, but I have other SP that are SELECT commands and they work.
Ive tried changing the DEFINER to '%' and '' but neither of that worked.
I'm thinking this has to be some kind of a permission problem or a my.cnf problem but I have no idea how to fix this nor do I seem to be able to find a solution on the internet machine :)
EDIT: I just tried to execute it from phpmyadmin and that worked. I tried both as root and myUser. What is going on ?