php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1566 Cannot get information from database
Submitted: 1999-06-18 11:31 UTC Modified: 1999-06-18 12:39 UTC
From: kenford at infomak dot com Assigned:
Status: Closed Package: DBM/DBA related
PHP Version: 3.0.8 OS: Linux 2.0.33
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
32 - 11 = ?
Subscribe to this entry?

 
 [1999-06-18 11:31 UTC] kenford at infomak dot com
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);



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-06-18 12:39 UTC] sas at cvs dot php dot net
There is a bug in PHP 3.0.8's version of dba_db2.c. Upgrade to 3.0.9 or apply the following patch:

http://cvs.php.net/cvsweb.cgi/functions/dba_db2.c.diff?r1=1.8&r2=1.9
 [2022-05-23 14:10 UTC] git@php.net
Automatic comment on behalf of cmb69
Revision: https://github.com/php/doc-en/commit/36a894a62760104ad57aaf761a8a56e478353e87
Log: Fix #1566: crypt(): --with-external-libcrypt undocumented
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 15:01:29 2024 UTC