PHP 7, mysqli, Reference: Example of how to use bind_result vs get_result
I am using unbuffered fetching (I hope) and wonder about the memory consumption $m
. As I just fetch (test case) I would expect the memory $m
to be almost constant. But it is not, depending on how many rows I fetch it increases. I would expect that fetch result works like a cursor only getting 1 row at a time.
How would I achieve that (reading 1 row at a time)?
Remark: Here https://stackoverflow.com/a/14260423/356726 they use
$uresult = $mysqli->query("SELECT Name FROM City", MYSQLI_USE_RESULT);
but I have not found a way to pass MYSQLI_USE_RESULT
somewhere in a prepared statement.
$result = $stmt->get_result(); // not stored I hope
$i = 0;
while ($row = $result->fetch_assoc()) {
$i++;
if ($i > 20000) {
break;
}
}
$m = memory_get_usage(); // see values between 10-50MB here, depending on i
$this->freeAndCloseStatement($stmt);
There is an example on Mysql Documentation, so you don't put as parameter, just run a method.
https://dev.mysql.com/doc/apis-php/en/apis-php-mysqli.use-result.html
For prepared statement you could set attribute as false.