|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-05-09 19:29 UTC] kevin dot bluck at mail dot com
Description: ------------ Appears to be a reversion of previously closed Bug #14039: symptoms seem identical to that bug report. http://bugs.php.net/bug.php?id=14039 Commenting out the ibase_close call eliminates the warning message. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 12:00:01 2025 UTC |
It seems specifically to apply when a query is prepared with ibase_prepare and run with ibase_execute; ibase_query does not show warning. This code reproduces on my system. <?php function foo() { $link = ibase_connect("Server:Database.gdb", "SYSDBA", "masterkey"); $query = ibase_prepare( $link, "SELECT * FROM Table" ); ibase_execute( $query ); ibase_close ($link); return -1; // generates the warning } $x = foo(); // warning displayed ?>