|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-07-18 20:16 UTC] rudi dot feijo at multidadosti dot com dot br
[2017-07-18 20:18 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2017-07-18 20:18 UTC] requinix@php.net
[2017-07-18 21:04 UTC] rudi dot feijo at multidadosti dot com dot br
-Status: Feedback
+Status: Open
[2017-07-18 21:04 UTC] rudi dot feijo at multidadosti dot com dot br
[2017-07-19 13:24 UTC] rudi dot feijo at multidadosti dot com dot br
[2017-07-21 20:24 UTC] alex at zoosmart dot us
[2021-03-31 11:39 UTC] cmb@php.net
-Status: Open
+Status: Suspended
[2021-03-31 11:39 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 19:00:01 2025 UTC |
Description: ------------ Adding a BOOLEAN field to a table, then trying any SELECT from that table crashes the server Test script: --------------- <?php /* sql for db : CREATE DATABASE 'c:\test.fdb' USER 'SYSDBA' PASSWORD 'masterkey' PAGE_SIZE 16384 DEFAULT CHARACTER SET WIN1252 COLLATION WIN1252; CREATE TABLE ASD ( AA INTEGER ); ALTER TABLE ASD ADD NEW_FIELD BOOLEAN; */ $c = ibase_connect('localhost:C:\\test.fdb','SYSDBA','masterkey'); $q = ibase_query('select * from asd'); $r = ibase_fetch_assoc($q); echo ibase_errmsg(); echo array_keys($r)[0]; Actual result: -------------- php crash (error 500)