ID:               15577
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         OCI8 related
 Operating System: Solaris
 PHP Version:      4.1.1
 New Comment:

please send me a short fully self-contained testcase.



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

[2002-02-15 15:14:03] [EMAIL PROTECTED]

I have a function: 
---------------------------------
function SQLreturn($sql){
        $OC = @OCINLogon($this->user,$this->pass,$this->string);
        if($OC){
                $parsed = OCIParse($OC,$sql);
                OCIExecute($parsed);
                OCIFetchInto($parsed, &$rows,OCI_ASSOC);
                OCIFreeStatement($parsed);
                OCILogOff($OC);
                //return the array
                //print_r($rows);
                return $rows;
        }else{
                echo "No SQL connect: return";
        }
}
------------------------------------

that appears to cause some trouble...I'm not sure why either. Other
database connections work fine on this same server, but this one keeps
giving messages like: 

Warning: failed to rollback outstanding transactions!: Error while
trying to retrieve text for error ORA-03113 in
/export/home1/catalog/domainadmin/index.php on line 97

Warning: _oci_close_session: OCISessionEnd: Error while trying to
retrieve text for error ORA-12545 in
/export/home1/catalog/domainadmin/index.php on line 97

Has anyone else encountered this one? If so, any idea how to fix it?
thanks,
-chris

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


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

Reply via email to