Hi,

While testing a few things on the OCI8 extension I got a very unusual
error from a very simple script. (Look below)

I am running an VS6 compiled CVS version via CLI on Win2k.


here's the script:

<?php

$sql   =  "select sysdate from dual";


$conn  =  OCILogon('schema', 'password', 'listener');

$stmt  =  OCIParse($conn, $sql);
          OCIExecute($stmt);

$rows  =  OCIFetchStatement($stmt, $res);
          OCIFreeStatement($stmt);


echo "Found $rows rows:\n\n";
print_r($res);

?>

result:
---------------------------------

F:\php_compiled\source\Release_TS>php ../../tests/test.php
Found 1 rows:

Array
(
    [SYSDATE] => Array
        (
            [0] => 19-OCT-02
        )

)

Fatal error: Nesting level too deep - recursive dependency? in Unknown on line 0
-------------------------------------


What could it have been caused by? Should i worry about it?


Maxim Maletsky
[EMAIL PROTECTED]


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to