ID: 13131 Updated by: mj Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: FrontBase related Operating System: Sun OS PHP Version: 4.0.6 New Comment:
Please try the latest version of PHP from CVS or the latest snapshot from http://snaps.php.net/. There was a patch regarding your problem a few days ago. Previous Comments: ------------------------------------------------------------------------ [2001-09-04 09:03:56] [EMAIL PROTECTED] The number of rows returned by fbsql_num_rows is wrong when used with 'select DISTINCT' query. This script shows differences between fbsql_num_rows function and a while over all rows. This problem doesn't appear if you don't use the 'distinct' option. Greetings ----------------------------------------------------------- $conn=fbsql_connect("127.0.0.1","myname","mypassword"); fbsql_select_db("mybase",$conn) ; $sql = "select distinct id_actor from actor_table;"; $result=fbsql_query($sql,$conn) ; $num_rows = fbsql_num_rows($result); echo "$num_rows Rows\n";// displays "2147483647 Rows" $i=0; while ($row=fbsql_fetch_array($result)) $i++; echo "$i Rows\n"; // displays "5 Rows" @fbsql_free_result($result); @fbsql_close($conn); ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=13131&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]