php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #23188 CDB databases created with "c" mode do not work.
Submitted: 2003-04-13 15:09 UTC Modified: 2003-04-14 16:57 UTC
From: rhondle at hotmail dot com Assigned: helly (profile)
Status: Closed Package: DBM/DBA related
PHP Version: 4.3.0 OS: ANY
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: rhondle at hotmail dot com
New email:
PHP Version: OS:

 

 [2003-04-13 15:09 UTC] rhondle at hotmail dot com
The docs indicate that either the 'c' or 'n' modes can be used to create a dba database. When creating a CDB database, the 'n' mode produces a functional database, while the 'c' mode does not. No errors are reported; the database just does not work.

The database created using 'c' doesn't work:
<?php
$id = dba_open ("test.db", "c", "cdb_make");
dba_insert("test","12345",$id);
dba_close ($id);
?>

This will create a working database:
<?php
$id = dba_open ("test.db", "n", "cdb_make");
if (!$id) exit("dba_open failed\n");
dba_insert("test","12345",$id);
dba_close ($id);
?>

tested with:
<?php
$id = dba_open ("test.db", "r", "cdb");
if (!$id) exit("dba_open failed\n");
if (dba_exists("test", $id))
        print dba_fetch("test", $id);
else
        print "Key not found!!\n";
dba_close ($id);
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-04-13 15:20 UTC] helly@php.net
Check again:
"c" should return NULL in case an error happend and you don not check for that.
 [2003-04-13 15:40 UTC] rhondle at hotmail dot com
dba_open does not return null, implying success. In fact, it *technically* does succeed; it's just that the resulting file is corrupt in some way.

<?php
$id = dba_open ("test.db", "c", "cdb_make");
if (!$id) exit("dba_open failed\n");
dba_insert("test","12345",$id);
dba_close ($id);
?>
 [2003-04-14 16:57 UTC] helly@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

CDB_MAKE can handle only NEW and READ. Therefore allowing
"C" was an error. Thanks for the mail and time.
 [2003-11-07 06:30 UTC] lx-box at gmx dot de
Creating a db with mode "c" works for me but an existing db is cleared! 

Manual says it is not cleared with "c"...

PHP 4.3.4 on SunOS hermes 5.8
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 07:01:27 2024 UTC