Home » Database » MDB2 » Bug #8762
Redundant paragraph
Details
| Doc Bug #8762 | Redundant paragraph |
|---|---|
| Submitted | 2006-09-21 20:48 UTC |
| From | mcrusch at facstaff dot wisc dot edu |
| Assigned | lsmith |
| Status | Closed |
| Package | MDB2 |
| PHP Version | Irrelevant |
| OS | N/A |
| Roadmaps | (Not assigned) |
Comments
[2006-09-21 20:48 UTC] mcrusch at facstaff dot wisc dot edu
Description:
------------
The second and third paragraphs of the description section of
PEAR :: Manual :: Introduction - Query
are almost identical:
fetchRow() and fetchOne() read an entire row or a single column respectively. The result pointer gets moved to the next row each time these methods are called. NULL is returned when the end of the result set is reached.
fetchRow() reads an entire row as an array and fetchOne() reads an single column into a scalar. The result pointer gets moved to the next row each time these methods are called. NULL is returned when the end of the result set is reached.
The first of the two paragraphs could easily be removed, as the second is slightly more descriptive.