|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-22 06:38 UTC] boltthrower at libero dot it
[2002-05-06 09:32 UTC] cunha at gabcmt dot eb dot mil dot br
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 09:00:01 2025 UTC |
<?php $conn = ociplogon('user','pass','testdb'); echo "Server Version: " . OCIServerVersion($conn); ?> reloading the same page I get ever more connections; you can check it with: select * from v$session where status ='ACTIVE' ----------------- oracle version is: Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production With the Partitioning option JServer Release 8.1.6.0.0 - Production web server: Apache 1.3.12, with php running as a module the only active module in php.ini is oci8.dll; ----------------------- ( the php manual, chapt.22 says : When a persistent connection is requested, PHP checks if there's already an identical persistent connection (that remained open from earlier) - and if it exists, it uses it. If it does not exist, it creates the link. ) is this related to apache's multithreaded behaviour on windows? --Giuse