Home » Database » MDB2 » Bug #8750
Little mistake at one sample
Details
| Doc Bug #8750 | Little mistake at one sample |
|---|---|
| Submitted | 2006-09-21 02:04 UTC |
| From | albertomarlboro at gmail dot com |
| Assigned | lsmith |
| Status | Closed |
| Package | MDB2 |
| PHP Version | 4.4.1 |
| OS | xp pro sp2 |
| Roadmaps | (Not assigned) |
Comments
[2006-09-21 02:04 UTC] albertomarlboro at gmail dot com
Description:
------------
The sample 33-5 looks wrong.
fetchRow without format wont return row thru name :
;;;;;;; Wrong ;;;;;;;;;;;;;;;
while ($row = $res->fetchRow()) {
echo $row['name'] . ', ' . $row['address'] . "\n";
;;;;;;; Fixed ;;;;;;;;;;;;;;;
fetchRow(MDB2_FETCHMODE_ASSOC)