MySQL Stored Procedures not working with SELECT (basic question)

前端 未结 4 1652
野趣味
野趣味 2020-11-30 15:06

I am using a platform (perfectforms) that requires me to use stored procedures for most of my queries, and having never used stored procedures, I can\'t figure out what I\'m

4条回答
  •  青春惊慌失措
    2020-11-30 15:46

    Figured it out. This is not a bug with PHP (though it used to be) - it's a bug in some versions of phpmyadmin. The same bug intermittently reappears and is then fixed in various subversions (see above):

    #1312 - PROCEDURE [name] can't return a result set in the given context
    

    This behavior appears limited to SELECT statements within stored procedures inside phpmyadmin.

    Using a client like MySQL Workbench works around the problem (or you could upgrade phpmyadmin, but that's a pain if you're on a shared server like I am).

    Anyway, thanks to everyone for your help.

提交回复
热议问题