|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-11-26 13:34 UTC] egarcia at egm dot as
Description:
------------
I have the 4.3.9 version, I upgrade to make tests over the 4.3.10RC1, but I found that:
The COM interface doesn't works, I make tests with ADODB library, and when the code runs:
$dbc = new COM('ADODB.Connection');
It doesn't create the object. This error doesn't happen in 4.3.9.
Reproduce code:
---------------
$y = new COM('ADODB.Connection');
if (is_resource($y)) {
echo "OK";
} else {
echo "fail";
}
Expected result:
----------------
OK
Actual result:
--------------
fail
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 06:00:01 2025 UTC |
Sorry, the code to reproduce is: $y = new COM('ADODB.Connection'); if ($y) { echo "OK"; } else { echo "fail"; } If I test it on the WEB. 4.3.9 => OK 4.3.10RC1 => fail If I test it on the CONSOLE. 4.3.9 => OK 4.3.10RC1 => OK