Re: issue with MySQL Query Browser
Chris <[email protected]>
| Newsgroups | gmane.comp.db.mysql.mycc |
|---|---|
| Message-ID | <[email protected]> |
This "bug" probably stems from the fact that it runs each query in a separate connection, so the variables are getting destroyed between queries. A possible "fix" (at least it used to be, it may not be now) Is to use the transaction buttons (even on non InnoDB tables). Then it will maintain the connection and act like the command line. Chris Alain Roger wrote: > Hi, > > I've created several stored procedures and functions this week end and > everything works great under command line window (results are what i expect > to). > however, stored procedures do no work under MySQL Query Browser. > > here is what i use to do : > > call my_stored_procedure(IN arg1, IN arg2, OUT @a, OUT @b); > select @a; > select @b; > > this works under command line window but not under this GUI tool, why ? > is there something particular to do for that ? > > thanks a lot for help. > > Alain > > -- MySQL GUI Tools Mailing List For list archives: http://lists.mysql.com/gui-tools To unsubscribe: http://lists.mysql.com/[email protected]