cubrid_free_result 함수는 질의 결과를 메모리로부터 해제시킨다.
bool cubrid_free_result ( int $result )
<?php
$result = cubrid_execute("SELECT id,email FROM people WHERE id = '42'");
/* Use the result, assuming we're done with it afterwards */
$row = cubrid_fetch_assoc($result);
/* Now we free up the result and continue on with our script */
cubrid_free_result($result);
echo $row['id'];
echo $row['email'];
?>