I have some trouble with Oracle Database and php... see this code: <? while (1) { $conn=OCILogon($username,$password,$database); $stmt=OCIParse($conn,"select 50 as toto from dual"); OCIDefineByName($stmt,"TOTO",&$total); OCIExecute($stmt); OCIFetch($stmt); echo ":::$total:::\n"; OCILogoff($conn); $err=OCIError($conn); OCILogoff($conn); sleep(10); } ?>
when i execute it, the number of fd on ocius.msg is growing. but there is only 1 connection at database. Can someone help me ? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php