Index: trunk/phase3/docs/database.txt |
— | — | @@ -19,10 +19,9 @@ |
20 | 20 | |
21 | 21 | $dbr = wfGetDB( DB_SLAVE ); |
22 | 22 | $res = $dbr->select( /* ...see docs... */ ); |
23 | | -while ( $row = $dbr->fetchObject( $res ) ) { |
| 23 | +foreach ( $res as $row ) { |
24 | 24 | ... |
25 | 25 | } |
26 | | -$dbr->freeResult( $res ); |
27 | 26 | |
28 | 27 | Note the assignment operator in the while condition. |
29 | 28 | |