首页  >  文章  >  后端开发  >  如何使用 PHP/mysqli 和 PDO 从 MySQL 中的存储过程中检索多个结果集?

如何使用 PHP/mysqli 和 PDO 从 MySQL 中的存储过程中检索多个结果集?

DDD
DDD原创
2024-10-30 19:30:02734浏览

How to Retrieve Multiple Result Sets from Stored Procedures in MySQL with PHP/mysqli and PDO?

使用 PHP/mysqli 处理 MySQL 中存储过程的多个结果集

从 PHP/mysqli 中的存储过程检索多个结果集可以是通过使用 mysqli_stmt_next_result() 函数来实现。以下示例演示如何使用此函数前进到第二个结果集:

<code class="php">$stmt = mysqli_prepare($db, 'CALL multiples(?, ?)');
mysqli_stmt_bind_param($stmt, 'ii', $param1, $param2);
mysqli_stmt_execute($stmt);

// Fetch and process the first result set
$result1 = mysqli_stmt_get_result($stmt);
while ($row1 = mysqli_fetch_assoc($result1)) {
    // Process row1
}

// Advance to the second result set
mysqli_stmt_next_result($stmt);
if (mysqli_stmt_error($stmt)) {
    die('Failed to advance to the second result set: ' . mysqli_stmt_error($stmt));
}

// Fetch and process the second result set
$result2 = mysqli_stmt_get_result($stmt);
while ($row2 = mysqli_fetch_assoc($result2)) {
    // Process row2
}</code>

PDO 解决方案

使用 PDO,代码将如下所示:

<code class="php">$stmt = $db->prepare('CALL multiples(:param1, :param2)');
$stmt->execute([':param1' => $param1, ':param2' => $param2]);

// Fetch and process the first result set
while ($row1 = $stmt->fetch()) {
    // Process row1
}

// Advance to the second result set
$stmt->nextRowset();

// Fetch and process the second result set
while ($row2 = $stmt->fetch()) {
    // Process row2
}</code>

注意:

请务必记住,并非所有数据库服务器都支持存储过程的多个结果集。请务必参阅数据库服务器的兼容性文档。

以上是如何使用 PHP/mysqli 和 PDO 从 MySQL 中的存储过程中检索多个结果集?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn