<small id='GsfOY'></small><noframes id='GsfOY'>

<i id='GsfOY'><tr id='GsfOY'><dt id='GsfOY'><q id='GsfOY'><span id='GsfOY'><b id='GsfOY'><form id='GsfOY'><ins id='GsfOY'></ins><ul id='GsfOY'></ul><sub id='GsfOY'></sub></form><legend id='GsfOY'></legend><bdo id='GsfOY'><pre id='GsfOY'><center id='GsfOY'></center></pre></bdo></b><th id='GsfOY'></th></span></q></dt></tr></i><div id='GsfOY'><tfoot id='GsfOY'></tfoot><dl id='GsfOY'><fieldset id='GsfOY'></fieldset></dl></div>
  • <tfoot id='GsfOY'></tfoot>
        <bdo id='GsfOY'></bdo><ul id='GsfOY'></ul>

        <legend id='GsfOY'><style id='GsfOY'><dir id='GsfOY'><q id='GsfOY'></q></dir></style></legend>
      1. MySQL 存储过程不适用于 SELECT(基本问题)

        MySQL Stored Procedures not working with SELECT (basic question)(MySQL 存储过程不适用于 SELECT(基本问题))

            <small id='shEkn'></small><noframes id='shEkn'>

            <i id='shEkn'><tr id='shEkn'><dt id='shEkn'><q id='shEkn'><span id='shEkn'><b id='shEkn'><form id='shEkn'><ins id='shEkn'></ins><ul id='shEkn'></ul><sub id='shEkn'></sub></form><legend id='shEkn'></legend><bdo id='shEkn'><pre id='shEkn'><center id='shEkn'></center></pre></bdo></b><th id='shEkn'></th></span></q></dt></tr></i><div id='shEkn'><tfoot id='shEkn'></tfoot><dl id='shEkn'><fieldset id='shEkn'></fieldset></dl></div>
            <legend id='shEkn'><style id='shEkn'><dir id='shEkn'><q id='shEkn'></q></dir></style></legend>
              <bdo id='shEkn'></bdo><ul id='shEkn'></ul>
            • <tfoot id='shEkn'></tfoot>
                <tbody id='shEkn'></tbody>

                  本文介绍了MySQL 存储过程不适用于 SELECT(基本问题)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我使用的平台(perfectforms)要求我对大多数查询使用存储过程,并且从未使用过存储过程,我无法弄清楚我做错了什么.以下语句执行没有错误:

                  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 doing wrong. The following statement executes without error:

                  DELIMITER //
                  DROP PROCEDURE IF EXISTS test_db.test_proc//
                  CREATE PROCEDURE test_db.test_proc() SELECT 'foo'; //
                  DELIMITER ;
                  

                  但是当我尝试使用以下方法调用它时:

                  But when I try to call it using:

                  CALL test_proc();
                  

                  我收到以下错误:

                  #1312 - PROCEDURE test_db.test_proc can't return a result set in the given context
                  

                  我在 phpmyadmin 3.2.4、PHP 版本 5.2.12 和 mysql 服务器版本是 5.0.89-community 中执行这些语句.

                  I am executing these statements from within phpmyadmin 3.2.4, PHP Version 5.2.12 and the mysql server version is 5.0.89-community.

                  当我编写一个返回参数的存储过程,然后选择它时,一切正常(例如):

                  When I write a stored procedure that returns a parameter, and then select it, things work fine (e.g.):

                  DELIMITER //
                  DROP PROCEDURE IF EXISTS test_db.get_sum//
                  CREATE PROCEDURE test_db.get_sum(out total int)
                  BEGIN
                  SELECT SUM(field1) INTO total FROM test_db.test_table;
                  END //
                  DELIMITER ;
                  

                  工作正常,当我调用它时:

                  works fine, and when I call it:

                  CALL get_sum(@t); SELECT @t;
                  

                  我得到的总和没问题.

                  最终,我需要做的是在存储过程中包含一个花哨的 SELECT 语句,这样我就可以调用它,并返回多行的多个字段.现在我只是想让 any 选择工作.

                  Ultimately, what I need to do is have a fancy SELECT statement wrapped up in a stored procedure, so I can call it, and return multiple rows of multiple fields. For now I'm just trying to get any select working.

                  非常感谢任何帮助.

                  推荐答案

                  想通了.这不是 PHP 的错误(尽管它曾经是) - 这是某些版本的 phpmyadmin 中的错误.相同的错误间歇性地重新出现,然后在各种颠覆中得到修复(见上文):

                  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
                  

                  此行为似乎仅限于 phpmyadmin 中存储过程中的 SELECT 语句.

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

                  使用像 MySQL Workbench 这样的客户端可以解决这个问题(或者你可以升级 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.

                  这篇关于MySQL 存储过程不适用于 SELECT(基本问题)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Accessing another user#39;s table within an Oracle Stored Procedure(在 Oracle 存储过程中访问另一个用户的表)
                  Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32)(超出最大存储过程、函数、触发器或视图嵌套级别(限制 32))
                  How to View Oracle Stored Procedure using SQLPlus?(如何使用 SQLPlus 查看 Oracle 存储过程?)
                  How to debug stored procedure in VS 2015?(如何在 VS 2015 中调试存储过程?)
                  How to Pass Java List of Objects to Oracle Stored Procedure Using MyBatis?(如何使用 MyBatis 将 Java 对象列表传递给 Oracle 存储过程?)
                  Set the variable result, from query(设置变量结果,来自查询)

                  1. <i id='x6eJh'><tr id='x6eJh'><dt id='x6eJh'><q id='x6eJh'><span id='x6eJh'><b id='x6eJh'><form id='x6eJh'><ins id='x6eJh'></ins><ul id='x6eJh'></ul><sub id='x6eJh'></sub></form><legend id='x6eJh'></legend><bdo id='x6eJh'><pre id='x6eJh'><center id='x6eJh'></center></pre></bdo></b><th id='x6eJh'></th></span></q></dt></tr></i><div id='x6eJh'><tfoot id='x6eJh'></tfoot><dl id='x6eJh'><fieldset id='x6eJh'></fieldset></dl></div>
                    <tfoot id='x6eJh'></tfoot>
                    <legend id='x6eJh'><style id='x6eJh'><dir id='x6eJh'><q id='x6eJh'></q></dir></style></legend>

                          <bdo id='x6eJh'></bdo><ul id='x6eJh'></ul>
                            <tbody id='x6eJh'></tbody>

                          <small id='x6eJh'></small><noframes id='x6eJh'>