|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 09:00:02 2025 UTC |
Hi everybody, When I try to access an Oracle DB with the ODBC functions (a simple SELECT request...), I do get the result that I want but my Web browser keeps on looking for something. Furthermore, the PHP.EXE process on my Web server keeps on running (that is, after 5 or 6 requests, the server gets out of memory and I must kill these processes myself...) Here is a little piece of my program... $connectionID = odbc_connect("PEGASE", "pub", "pub"); $resultID = odbc_exec($connectionID, "select * from edv.item_master where part_number like '" . $partNr . "'"); $count=0; while($temp = odbc_fetch_into($resultID,&$tempArray)){ $count++; } $designation = $tempArray[16]; $ref = $tempArray[34]; odbc_close($connectionID); Cheers, Cedric