DB_result::free() -- Releases a result set
Beschreibung
Deletes the result set and frees the memory occupied by the result set.
Does not delete the DB_result
object itself.
Rückgabewert
boolean - Gibt bei Erfolg TRUE zurück, bei einem Fehler FALSE.
Beispiel
Beispiel 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();
?> |
|
Hinweise
Diese Methode kann nicht
statisch aufgerufen werden.