We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00c501 commit 8a2127cCopy full SHA for 8a2127c
MysqliDb.php
@@ -720,6 +720,9 @@ protected function _dynamicBindResults(mysqli_stmt $stmt)
720
$this->count++;
721
array_push($results, $x);
722
}
723
+ // stored procedures sometimes can return more then 1 resultset
724
+ if ($this->_mysqli->more_results())
725
+ $this->_mysqli->next_result();
726
727
if ($this->fetchTotalCount === true) {
728
$this->fetchTotalCount = false;
0 commit comments