|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-29 12:28 UTC] nbi at gmx dot de
[2003-01-18 16:12 UTC] phanto@php.net
[2003-01-29 20:04 UTC] phanto@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 18:00:01 2025 UTC |
COM-Support on Apache 1.3.27 with PHP 4.2.2 (as Apache dso) seems to have a memory leak. Every time I run the following code, memory usage of Apache is increased by about 86 kB: $cid = new COM('ADODB.Connection'); $cid->Open ("File Name=udlfile.udl"); $rid = $cid->Execute ("SELECT * FROM test"); $rid->Close(); $rid->Release(); $rid = NULL; unset ($rid); $cid->Close(); $cid->Release(); $cid = NULL; unset ($cid); Is it really a memory leak or just my way of trying to free memory resources? Cheers, Norbert