|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-10 04:22 UTC] grantc@php.net
[2008-03-11 10:49 UTC] grant dot croker at ingres dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 05:00:01 2025 UTC |
Description: ------------ After calling ingres_num_rows, ingres_fetch_* commands return no rows. Reproduce code: --------------- ingres_query("select count(id) from users"); // 20 rows echo(ingres_num_rows()); //<- this clears resultset $row = ingres_fetch_array() echo($row[0]); Expected result: ---------------- 20 20 Actual result: -------------- 20 null