|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-27 23:27 UTC] jah@php.net
[2000-11-11 16:08 UTC] dbeu@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 15:00:01 2025 UTC |
PHP.EXE was used as standalone, with php_interbase.dll configured as module. Trying to connect/query to InterBase database with: $dbh = ibase_connect(xxx, xxx, xxx); $stmt = 'SELECT * FROM customer'; $sth = ibase_query ($dbh, $stmt); while ($row = ibase_fetch_object ($sth)) { print $row->co_name; } ibase_close ($dbh); If ibase_connect fails, and ibase_query gets executed, PHP.EXE will crash. Following was captured as output from PHP.EXE before crash: Warning: 0 is not a valid InterBase link resource in xxx.php on line 17 Where line 17 is ibase_query.