Really? I've been using the following construct for a couple of years now to "rewind" a previously-processed query back to the beginning:
Code:$result = $db->Execute (<some sql query>); while (!$result->EOF) { ... $result->MoveNext (); } ... // ----- // "Rewind" the query to re-process ... // $result->Move (0); $result->MoveNext (); while (!$result->EOF) { ... $result->MoveNext (); }



Reply With Quote
