|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-06-18 12:39 UTC] sas at cvs dot php dot net
[2022-05-23 14:10 UTC] git@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 16 19:00:01 2025 UTC |
This work ---------- $id = dba_open("test.db", "n", "db2"); $DATA="hello world"; dba_insert(testID, $DATA, $id); echo "[" . dba_fetch("testID", $id) . "]\n"; dba_close($id); These do not work ---------------- $id = dba_open("test.db", "r", "db2"); echo dba_fetch("testID", $id) . "\n"; dba_close($id); $id = dba_open("test.db", "r", "db2"); echo dba_firstkey($id); dba_close($id); $id = dba_popen("test.db", "r", "db2"); echo dba_fetch("testID", $id) . "\n"; dba_close($id);