ID: 26968
User updated by: voev at hotmail dot com
Reported By: voev at hotmail dot com
Status: Open
Bug Type: InterBase related
Operating System: RedHat 7.2
PHP Version: 4.3.4
New Comment:
Thank you!
Previous Comments:
------------------------------------------------------------------------
[2004-01-19 14:32:41] voev at hotmail dot com
Description:
------------
My Firebird (SS) or Interbase server chrash very often when I test it
with php.
If work with Kylix cgi page I haven't sql server problems.
When start php from console and run any php that connect to
InterBase/Firebird the last row is
"Segmentation fault" always.
I've tested it with php 4.3.4, php 4.3.5 RC2, Firebird SS 1.03 and
Interbase 7.1 as well.
Php is ./configure --with-interbase=shared,/opt/interbase --with-apxs
--enable-track-vars --enable-debug
Reproduce code:
---------------
<? $dbh =
ibase_connect('localhost:/opt/interbase/examples/employee.gdb',
'SYSDBA', 'masterkey');
$stmt = 'SELECT * FROM COUNTRY';
$sth = ibase_query($dbh,$stmt);?>
<html>
<head>
</head>
<body>
<table>
<?php while ($row = ibase_fetch_object($sth)) { ?>
<tr><td><? echo $row->COUNTRY;?></td></tr>
<?}
ibase_free_result($sth);
ibase_close($dbh);?>
</table></body></html>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=26968&edit=1