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

DDD
发布: 2024-10-30 19:30:02
原创
732 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!