ID: 26035 User updated by: a dot stagl at gmx dot at Reported By: a dot stagl at gmx dot at -Status: Feedback +Status: Open Bug Type: DBM/DBA related Operating System: Win2k PHP Version: 4.3.3 New Comment:
I sent it to yob by PM. Previous Comments: ------------------------------------------------------------------------ [2003-10-30 08:21:03] [EMAIL PROTECTED] Could you please provide the database in question. ------------------------------------------------------------------------ [2003-10-30 05:30:43] a dot stagl at gmx dot at Description: ------------ I'm trying to open the contacts-databse from a nokia 9210i mobile, but it doesn't work. Reproduce code: --------------- $db_conn = dba_open("contacts.cdb","r","cdb"); if (!$db_conn) die ("opening failed"); $key = dba_firstkey ($db_conn); while ($key != false) { echo $key."<br />"; echo dba_fetch ($key, $db_conn)."<br /><br />"; $key = dba_nextkey ($db_conn); } dba_close($db_conn); Expected result: ---------------- ...to get a list of key-value pairs. Actual result: -------------- The code didn't produce the expected output nor any error message. It seems that the commands dba_firstkey and dba_nextkey always return false instead of a key. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=26035&edit=1