Edit report at http://bugs.php.net/bug.php?id=52302&edit=1

 ID:               52302
 Updated by:       fel...@php.net
 Reported by:      brianlm...@php.net
 Summary:          mysqli_fetch_all does not work with MYSQLI_USE_RESULT
-Status:           Open
+Status:           Assigned
 Type:             Bug
 Package:          MySQLi related
 Operating System: Linux
 PHP Version:      5.3.2
-Assigned To:      
+Assigned To:      mysql



Previous Comments:
------------------------------------------------------------------------
[2010-07-10 10:39:32] brianlm...@php.net

Description:
------------
When using MYSQLI_USE_RESULT as the second parameter to mysqli_query,
fetch_all returns null.

Test script:
---------------
<?php



$m = new MySQLi("", "root", "", "information_schema");



$sql = "show tables";



$res = $m->query($sql, MYSQLI_USE_RESULT);



$rows = $res->fetch_all();



var_dump($rows);



?>

Expected result:
----------------
An array of the table data.

Actual result:
--------------
NULL


------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=52302&edit=1

Reply via email to