ID: 34828
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Feedback
+Status: Open
Bug Type: MySQLi related
Operating System: Windows XP Pro SP2
PHP Version: 5.0.5
New Comment:
This works:
$mysql = new mysqli('localhost', 'root', '', 'test');
$mysql->query("SELECT 'test'");
$result = new mysqli_result($mysql);
$row = $result->fetch_row();
And this doesn't:
$mysql = new mysqli('localhost', 'root', '', 'test');
$result = $mysql->query("SELECT 'test'");
$row = $result->fetch_row();
Previous Comments:
------------------------------------------------------------------------
[2005-10-11 15:07:14] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5-STABLE-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php5.0-win32-latest.zip
------------------------------------------------------------------------
[2005-10-11 15:02:00] [EMAIL PROTECTED]
Description:
------------
new mysqli_result($mysql); doesn't return expected instance
Reproduce code:
---------------
$mysql = new mysqli('localhost', 'root', '', 'test');
$mysql->query('SELECT * FROM `test`');
$result = new mysqli_result($mysql);
$row = $result->fetch_row();
$result->close();
$mysql->close();
var_dump($row);
Expected result:
----------------
array
Actual result:
--------------
NULL
+ Warning messages:
Warning: Couldn't fetch mysqli_result in test.php on line 4
Warning: Couldn't fetch mysqli_result in test.php on line 6
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34828&edit=1