boolean free (
)
Deletes the result set and frees the memory occupied by the result set. Does not delete the DB_result object itself.
boolean - Returns TRUE on success, FALSE on failure.
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();
?>
This function can not be called statically.