|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-14 10:18 UTC] edemorsy at online dot fr
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 15:00:01 2025 UTC |
When I run a script like this one... $categres = ibase_query("SELECT id, pere, titre, fullname FROM se_categ ORDER BY fullname ASC"); while ($data = ibase_fetch_object($categres)) $ListCateg[]=stripslashes($data->fullname); ... $data->fullname is empty, but if I use ibase_fetch_row(), the whole thing works well.... not blocking, but really annoying ! I saw that I had to use dialect 1 for my database, but even after switching my db to dialect 1 using gfix, it still doesn't work....