From cc89713c27d266382e324a65dac06c65ca491610 Mon Sep 17 00:00:00 2001 From: soranzo Date: Wed, 10 Jan 2007 00:28:33 +0000 Subject: [PATCH] Incrementally use ->fields for recordsets, ->f is not supported by adodb. Remove unused file. --- DEVELOPERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPERS b/DEVELOPERS index 316a8998..c80e2880 100644 --- 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->fields['field']; $rs->moveNext(); } } -- 2.39.5