ID:               10455
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         OCI8 related
 Operating System: Linux  2.2.14-6.0lp
 PHP Version:      4.0.4pl1
 New Comment:

does it still happen?



Previous Comments:
------------------------------------------------------------------------

[2001-04-23 07:22:38] [EMAIL PROTECTED]

<?php
  $DSN="oci8://scott:gods";
  require_once("DB.php");
    $myDB = new DB;
    $myOBJ = $myDB -> connect($DSN);
    if ($myDB -> isError($myOBJ))
    { echo $myOBJ;
      return NULL;
    }
    $resultOBJ = $myOBJ -> query("select * from addr_id");
    if ($myDB -> isError($resultOBJ))
    { echo $resultOBJ;
      return NULL;
    }
    else
    {
      while( $row = $resultOBJ->fetchRow() )
      { echo "$row[0] $row[1] $row[2] $row[3] $row[4] $row[5] $row[6]
$row[7]\n"
;
      }
    }
?>

The result:

0 1234 2313 1233 RD. 68�� R.O.C. TAIWAN 
Warning: OCIFetchInto: ORA-01002: �^�������Ǥ��� in DB/oci8.php on line
206

Warning: OCIFetchInto: ORA-01002: �^�������Ǥ��� in DB/oci8.php on line
206

Warning: OCIFetchInto: ORA-01002: �^�������Ǥ��� in DB/oci8.php on line
206



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=10455&edit=1

Reply via email to