|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-10-14 13:25 UTC] msisolak at yahoo dot com
Testing this code in 4.3.0-pre1:
<?php
$adodb = new COM("ADODB.Connection") or die("Cannot start ADO");
$adodb->Release();
?>
under ISAPI results in this error page for me:
Warning: (null)(): Invoke() failed: Exception occurred. Source: ADODB.Connection Description: Operation is not allowed when the object is closed. in c:\work\test.php on line 4
Warning: String is not zero-terminated (ZZZZZZZZ?̏*ZZZZ ) (source: c:\php-4.3.0pre1\ext\com\com.c:2112) in c:\work\test.php on line 4
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 01:00:01 2025 UTC |
I don't believe this is an ADODB problem. The same error happens if I do this: <?php $xml = new COM("MSXML.DOMDocument") or die("failed to create"); $xml->Release(); ?>