DB_result::free() -- Releases a result set
Beschrijving
Deletes the result set and frees the memory occupied by the result set.
Does not delete the DB_result
object itself.
Return waarde
boolean - Geeft TRUE terug bij success, FALSE bij een fout.
Voorbeeld
Voorbeeld 34-1. Using free() <?php
// Once you have a valid DB object named $db...
$res =& $db->query('SELECT name, address FROM clients');
while ($row =& $res->fetchRow()) {
echo $row['name'] . ', ' . $row['address'] . "\n";
}
$res->free();
?> |
|
Note
Deze functie kan niet statisch worden aangeroepen.