From:             [EMAIL PROTECTED]
Operating system: Solaris
PHP version:      4.1.1
PHP Bug Type:     OCI8 related
Bug description:  "failed to rollback outstanding transactions!" Oracle connection 
error

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 bug report at http://bugs.php.net/?id=15577&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=15577&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=15577&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=15577&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15577&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15577&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15577&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=15577&r=notenoughinfo
Submitted twice:     http://bugs.php.net/fix.php?id=15577&r=submittedtwice

Reply via email to