there is a mysql function in php called mysql_free_result(); I couln\'t find any similar function for PDO.
is there a pdo function to free the result of a database f
You can set the object variable to null. The GC will destroy the PDO Statement instance, I guess.
closest method is close cursor for PDO statements.
http://us.php.net/manual/en/pdostatement.closecursor.php