调用未定义的方法mysqli_stmt :: next_result()

时间:2017-09-22 00:44:39

标签: php mysqli prepared-statement multiple-resultsets

我试图在PHP中循环遍历通过预准备语句调用的存储过程。希望它并非不可能。这是我的PHP代码:

$database = new mysqli($server, $user, $pass, $db);
$stmt = $database->prepare("CALL thisShouldReturnEightResultSets (?)");
$stmt->bind_param("i", $id);
$stmt->execute();

do {
    if ($res = $stmt->bind_result($myvar)) {
        $stmt->fetch();
        echo "*" . $myvar . "<br/>";
    } else {
        if ($stmt->errno) {
            echo "Store failed: (" . $stmt->errno . ") " . $stmt->error;
        }
    }
} while ($stmt->next_result());

应该这样打印:

* 4
* 16
* 7
etc...

...然后在运行结果集后退出。相反,我得到:

* 4

Fatal error: Call to undefined method mysqli_stmt::next_result()

起初我尝试了 get_result 而不是 bind_result ,但这是错误的。根据{{​​3}}我发现我没有安装mysqlnd驱动程序。用 bind_result 解决了这个问题。现在我需要解决 next_result ,我猜测它也是mysqlnd驱动程序的一部分。我有什么选择?技术说明:

PHP Version 5.3.2-1ubuntu4.11

感谢。

2 个答案:

答案 0 :(得分:0)

bindResult不喜欢多个结果。

使用get_result()然后使用fetch_assoc并存储在数组中, 然后使用foreach循环输出结果。

  $res = $stmt->get_result();
  $array[];

  while($x = $res->fetch_assoc()){
     $array[]=$x;

    }

答案 1 :(得分:0)

我认为你不能用准备好的声明来做这件事,因为你没有MYSQLND驱动程序。你必须以老式的方式去逃避。

$id = $database->real_escape_string($id);
if ($database->multi_query("CALL thisShouldReturnEightResultSets ('$id')")) {
    do {
        if ($result = $database->store_result()) {
            while ($row = $result->fetch_row()) {
                echo "*" . $row[0] . "<br/>";
            }
        }
    } while ($database->next_result());
}