|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-19 01:14 UTC] alan_k@php.net
[2002-05-21 00:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 13:00:01 2025 UTC |
I want to use a dbm-database. I can insert, but I can't replace or delete anything. E.g.: <?php $dbh = dbmopen( "./data/produkte", "c" ) or die( "Couldn't open DBM-database!" ); // This is running! dbminsert( $dbh, "Sonic Screwdriver", "23.20" ) or die("Insert not possible!"); // This is running, too! dbmreplace( $dbh, "Sonic Screwdriver", "25.20" ) or die("Replace not possible!"); // Here I get the error-alert! dbmdelete( $dbh, "Sonic Screwdriver" ) or die("Delete not possible!"); // Here I get the error-alert, too! dbmclose( $dbh ); ?> (No gdb-backtrace available, sorry) Greetzz by da Kruemelkiller