|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-02-02 06:44 UTC] manente at interlogica dot it
<?
$connid=ifx_connect("dbnamw@ol_frzz", "informix",
"zzzzz") or die("Error");
$result = ifx_query("SELECT * FROM tabel", $connid) or
die("Error");
$rc = ifx_num_rows($result);
echo $rc; // <--- $a is always 0
ifx_free_result($result);
?>
The result of ifx_num_rows($result) is always 0!
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 11:00:01 2025 UTC |
Dear PHP Developer, I am facing same problem with ifx_num_rows() as well. It always return Zero. (1) PHP Syntax: $conn_id = ifx_pconnect($dbname, $dbuser, $dbpass) OR die ("Connection error!"); $res_id = ifx_query($sql_stat, $conn_id) OR die ("SQL Error!"); #-- It always return 0, even there is records found --# echo "Numrow = " . ifx_num_rows($res_id); (2) This is my spec: HP-UX 11.00 Informix Dynamic Server Version 7.31.UC6AX7 Informix CSDK 2.40.HC1 INFORMIX-ESQL Version 9.30.HC1 PHP 4.1.2 release Apache 1.3.23 (3) Appreciate if this bug (if it has been justified as bug) can be fixed as soon. Thank you. Regards, Koma