使用phpmysqli中的存储过程检索多个结果集

使用phpmysqli中的存储过程检索多个结果集,第1张

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

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

$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("%dn", $row['id']);}// now we're at the end of our first result set.mysqli_free_result($result1);//move to next result setmysqli_next_result($db);$result2 = mysqli_use_result($db);// you have to read the result set here while ($row = $result2->fetch_assoc()) {    printf("%dn", $row['id']);}// now we're at the end of our second result set.mysqli_free_result($result2);// close statementmysqli_stmt_close($stmt);

使用

PDO
您的代码如下所示:

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

但我听说MySQL PDO驱动程序

PDOStatement::nextRowset()
未实现,因此无法检索多个结果集:

  • PDO nextRowset在MySQL上不起作用
  • pdo_mysql:存储过程调用返回单个行集会阻止将来的查询
  • 无法在Windows上使用来自PDO的存储过程

因此,根据您的PHP版本,您必须坚持使用

mysqli
-solution。顺便说一句:您是否故意使用程序样式?使用面向对象的样式
mysqli
将使您的代码看起来更具吸引力(我个人认为)。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5045737.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存