Mysql
 sql >> Database >  >> RDS >> Mysql

query senza buffer con MySQLi?

MindStalker ha ragione, ma forse il modo più semplice è quello mostrato nel manuale PHP
http://php.net/manual/en/mysqlinfo.concepts.buffering.php

Passando la costante MYSQLI_USE_RESULT come resultmode argomento, puoi impostare mysqli_query funzionare come mysql_unbuffered_query

<?php
$mysqli  = new mysqli("localhost", "my_user", "my_password", "world");
$uresult = $mysqli->query("SELECT Name FROM City", MYSQLI_USE_RESULT);

if ($uresult) {
   while ($row = $uresult->fetch_assoc()) {
       echo $row['Name'] . PHP_EOL;
   }
}
$uresult->close();
?>