boolean freePrepared (resource $stmt)
boolean freePrepared
Removes the memory occupied by the internal notations that keep track of prepared SQL statements. Does not delete the DB_result object itself.
statement resource identifier returned from prepare()
boolean - Returns TRUE on success, FALSE on failure.
This function can not be called statically.
Example 26-1. Using freePrepared()
<?php // Once you have a valid DB object named $db... $sth = $db->prepare('INSERT INTO numbers (number) VALUES (?)'); $db->execute($sth, 1); $db->freePrepared($sth); ?>
prepare(), autoPrepare(), free()