projects
/
phppgadmin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42c7840
)
Incrementally use ->fields for recordsets, ->f is not supported by adodb. Remove...
author
soranzo
<soranzo>
Wed, 10 Jan 2007 00:28:33 +0000
(
00:28
+0000)
committer
soranzo
<soranzo>
Wed, 10 Jan 2007 00:28:33 +0000
(
00:28
+0000)
DEVELOPERS
patch
|
blob
|
blame
|
history
diff --git
a/DEVELOPERS
b/DEVELOPERS
index 316a8998e183bfed9e9dff27ac02e7e3096b45c7..c80e2880518c35ec9194009c0c383239f3a10912 100644
(file)
--- a/
DEVELOPERS
+++ b/
DEVELOPERS
@@
-98,7
+98,7
@@
This is the general form for looping over a recordset:
$rs = $class->getResults();
if (is_object($rs) && $rs->recordCount() > 0) {
while (!$rs->EOF) {
- echo $rs->f['field'];
+ echo $rs->f
ields
['field'];
$rs->moveNext();
}
}