[phplib] why $db->nf() returns 0 all the time??? From: raysoft (raysoft <email protected>)
Date: 09/06/00

I am using phplib7.2c to visit Oracle db.
I am using db_oci8.inc file.
but when I do this:

 $db=new DB_Sql();
 $query="select * from MyTable";
 $db->query($query);
 if($db->nf()) //?????!!!!!
 {
         while($db->next_record()
         {
                 .......
         }
 }

The function $db->nf() alwarys return 0!! even if there is some records in MyTable.
why?
when I use this with MySql, It do thing OK.
Is't Oracle's fault or Phplib's??
Help me please!! Thank u very much!!

---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-unsubscribe <email protected>
For additional commands, e-mail: phplib-help <email protected>