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

    1. <tfoot id='Z0S4f'></tfoot>

      <legend id='Z0S4f'><style id='Z0S4f'><dir id='Z0S4f'><q id='Z0S4f'></q></dir></style></legend>

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

      1. &quot;命令不同步;你现在不能运行这个命令

        时间:2023-07-29
            <tbody id='cTW3s'></tbody>
          <legend id='cTW3s'><style id='cTW3s'><dir id='cTW3s'><q id='cTW3s'></q></dir></style></legend>

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

            <bdo id='cTW3s'></bdo><ul id='cTW3s'></ul>
                1. 本文介绍了&quot;命令不同步;你现在不能运行这个命令"- 由 mysqli::multi_query 引起的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在通过 mysqli::multi_query 运行多个删除操作,但它搞乱了下一个查询.正在抛出以下错误.

                  I am running multiple deletes through mysqli::multi_query and it is messing up the next query in line. The following error is being thrown.

                  Error - SQLSTATE HY000. 
                  Sql error: Commands out of sync; you can't run this command now
                  

                  我是否需要以某种方式清除多查询,以免干扰我的下一个查询?这个错误的原因是什么?

                  Do I need to somehow clear the multi query so it doesn't mess with my next query? What is the cause of this error?

                  这就是我运行多查询的方式:

                  And this is how I am running my multi query:

                  function deleteSomeTables($args) {
                      $sql = 'delete 1;delete another;';
                      if ($database->multi_query($sql)) {
                          return true;
                      } else {
                          return false;
                      }
                  }
                  

                  我在 Windows 7 上使用最新版本的 Xampp

                  I am using a recent version of Xampp on windows 7

                  推荐答案

                  这帮助我消除了命令不同步"错误:

                  This helped me to remove 'Commands out of sync' error:

                  do { 
                      $mysqli_conn_obj->use_result(); 
                  }while( $mysqli_conn_obj->more_results() && $mysqli_conn_obj->next_result() );
                  

                  在调用 multi_query 后添加这段代码,它将使用结果集并解决错误.

                  Add this code just after calling multi_query, it will use the result sets and resolve the error.

                  这篇关于&quot;命令不同步;你现在不能运行这个命令"- 由 mysqli::multi_query 引起的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP mysqli 为没有参数的存储过程准备的语句 下一篇:PHP:“命令不同步"如果我在调用结果存储过程

                  相关文章

                  最新文章

                  <tfoot id='QSUC0'></tfoot>

                    • <bdo id='QSUC0'></bdo><ul id='QSUC0'></ul>

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

                      <legend id='QSUC0'><style id='QSUC0'><dir id='QSUC0'><q id='QSUC0'></q></dir></style></legend>