PHP - PDO - 使用多执行时获取行计数

时间:2016-08-14 16:06:55

标签: php mysql pdo

==============

$query = $this->connection[db::$before_sent['conn']]->prepare(db::$before_sent['sttm']);
        for ($x=0; $x<db::$before_sent['excount']; $x++) {
          $query->execute(db::$before_sent['exval'][$x]);
          db::$after_sent[db::$formname]['rowCount'][] = $query->rowCount();
          $query->nextRowset($x+1);
        }

这段代码,你可以看到我使用rowCount()和nextRowset() 我知道当我使用多个语句时的工作 但无论如何我都可以这样做(一个陈述和多个执行) 因为你可以看到代码[它现在返回错误的rowcount]

谢谢你!

0 个答案:

没有答案