一尘不染

使用php / mysqli中的存储过程检索多个结果集

php

我有一个具有多个结果集的存储过程。我如何前进到mysqli中的第二个结果集以获得那些结果?

假设它是一个存储过程,例如:

create procedure multiples( param1 INT, param2 INT )
BEGIN

SELECT * FROM table1 WHERE id = param1;

SELECT * FROM table2 WHERE id = param2;

END $$

PHP是这样的:

$stmt = mysqli_prepare($db, 'CALL multiples(?, ?)');

mysqli_stmt_bind_param( $stmt, 'ii', $param1, $param2 );

mysqli_stmt_execute( $stmt );

mysqli_stmt_bind_result( $stmt, $id );

这就是我无法工作的部分。我尝试使用mysqli_next_result移至下一个结果集,但无法使其正常工作。我们确实使它可以与mysqli_store_result和mysqli_fetch_assoc
/ array / row一起使用,但是由于某种原因,所有int均以空字符串形式返回。

还有其他人遇到这个问题并有解决方案吗?


阅读 307

收藏
2020-05-29

共1个答案

一尘不染

我认为您在这里缺少什么(以下内容尚未经过测试):

$stmt = mysqli_prepare($db, 'CALL multiples(?, ?)');
mysqli_stmt_bind_param($stmt, 'ii', $param1, $param2);
mysqli_stmt_execute($stmt);
// fetch the first result set
$result1 = mysqli_use_result($db);
// you have to read the result set here 
while ($row = $result1->fetch_assoc()) {
    printf("%d\n", $row['id']);
}
// now we're at the end of our first result set.
mysqli_free_result($result1);

//move to next result set
mysqli_next_result($db);
$result2 = mysqli_use_result($db);
// you have to read the result set here 
while ($row = $result2->fetch_assoc()) {
    printf("%d\n", $row['id']);
}
// now we're at the end of our second result set.
mysqli_free_result($result2);

// close statement
mysqli_stmt_close($stmt);

使用PDO您的代码如下所示:

$stmt = $db->prepare('CALL multiples(:param1, :param2)');
$stmt->execute(array(':param1' => $param1, ':param2' => $param2));
// read first result set
while ($row = $stmt->fetch()) {
    printf("%d\n", $row['id']);
}
$stmt->nextRowset();
// read second result set
while ($row = $stmt->fetch()) {
    printf("%d\n", $row['id']);
}

但我听说MySQL PDO驱动程序PDOStatement::nextRowset()未实现,因此无法检索多个结果集:

因此,根据您的PHP版本,您必须坚持使用mysqli-solution。顺便说一句:您是否故意使用程序样式?使用面向对象的样式mysqli将使您的代码看起来更具吸引力(我个人认为)。

2020-05-29