我如何确保从MySQLi :: multi_query中捕获所有错误?

时间:2011-09-12 23:46:48

标签: php mysql mysqli

docs for multi_query说:

  

如果第一个语句失败,则返回FALSE。要从其他语句中检索后续错误,您必须先调用mysqli_next_result()。

docs for next_result说:

  

成功时返回TRUE,失败时返回FALSE。

最后,multi_query文档中发布的示例使用next_result的返回值来确定何时不再有查询;例如停止循环:

<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$query  = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

    /* execute multi query */
    if ($mysqli->multi_query($query)) {
        do {
            /* store first result set */
            if ($result = $mysqli->store_result()) {
                while ($row = $result->fetch_row()) {
                    printf("%s\n", $row[0]);
                }
                $result->free();
            }
            /* print divider */
            if ($mysqli->more_results()) {
                printf("-----------------\n");
            }
        } while ($mysqli->next_result()); // <-- HERE!
    }

    /* close connection */
    $mysqli->close();
    ?>

我不知道提供的查询数量,也不知道我将要执行的SQL的任何内容。因此,我不能只将查询数量与返回结果的数量进行比较。但是,如果第三个查询是破坏的查询,我想向用户显示错误消息。但我似乎没有办法判断next_result是否失败,因为没有更多的查询要执行,或者是因为SQL语法中有错误。

如何检查所有错误的查询?

3 个答案:

答案 0 :(得分:9)

尽管文档中有代码示例,但更好的方法可能是这样的:

if ($mysqli->multi_query(...)) {
  do {
    // fetch results

    if (!$mysqli->more_results()) {
      break;
    }
    if (!$mysqli->next_result()) {
      // report error
      break;
    }
  } while (true);
}

答案 1 :(得分:6)

无法捕捉到所有错误,请查看您使用的示例(来自here

此示例中只包含“select”语句,这对多语句脚本来说并不常见。

如果您将“插入”,“更新”,“删除”或至少“设置” - 它将以不同的方式工作。

“multi_query” - 如果第一个语句失败,则返回FALSE。第一个声明 - 这是我们可以控制的全部。随后的所有陈述都是神秘的。如果它不是“选择”语句 - 它将在“$ mysqli-&gt; store_result();”上给出错误。我们永远不知道它是否成功。

BUT

如果您将SQL脚本放在“START TRANSACTION; ... commit;”中包装器,你可以肯定 - 如果出现故障,一切都会失败。这很好,这有助于我们看看“所有失败”。

要做到这一点,只需在“insert - update”脚本的末尾添加一点“select”,如果last语句返回数据 - 所有脚本都成功完成。

使用SQL,如:

START TRANSACTION;    
  set @q=1;
  select "success" as response from dual;
commit;

PHP函数:

function last_of_multi_query ($mysqli, $query) {
    mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); //After that all mysql errors will be transferred into PHP exceptions.
    $mysqli->multi_query($query);               
    do { null; } while($mysqli->next_result());
    $result = $mysqli->store_result();
    if (!$result){
        throw new Exception('multi_query failed');
    }
    return $result;
}// end function

答案 2 :(得分:0)

比尔卡文的回答对我来说并不是很有说服力。当do while循环已设置为处理断点时,编写单独的条件中断似乎很奇怪。

我没有测试过以下代码段,但您应该能够从中获取必要的结果和错误:

$queries["CURRENT_USER"]="SELECT CURRENT_USER()";
$queries["CITY_NAME"]="SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

if(mysqli_multi_query($mysqli,implode(';',$queries))){
    do{
        list($current_table,$current_query)=each($queries);
        if($current_table!="CURRENT_USER"){
            printf("-----------------\n");
        }
        if($result=mysqli_store_result($mysqli)){
            if(mysqli_num_rows($result)<1){
                echo "<p>Logic Error @ $current_table Query<br>$current_query</p>";
            }else{
                while($row=mysqli_fetch_row($result)){
                    printf("%s\n",$row[0]);
                }
            }
            mysqli_free_result($result);
        }
    } while(mysqli_more_results($mysqli) && mysqli_next_result($mysqli));
}else{
    list($current_table,$current_query)=each($queries);
}
if($error=mysqli_error($mysqli)){
    echo "<p>Syntax Error @ $current_table Query<br>$current_query<br>Error: $error</p>";
}