(PECL CUBRID >= 8.3.0)
cubrid_free_result — Frees the memory occupied by the result data
This function frees the memory occupied by the result data. It returns TRUE on success or FALSE on failure.
This is the request identifier.
TRUE on success.
FALSE on failure.
Przykład #1 cubrid_free_result() example
<?php
$link = cubrid_connect("localhost", 30000, "demodb2", "dba", "");
if (!$link)
{
die('Could not connect.');
}
$query = 'SELECT id, name, address, salary FROM employees';
$result = cubrid_execute($link, $query);
if ($result)
{
$row = cubrid_fetch_assoc($result);
/* Now we free up the result and continue on with our script */
cubrid_free_result($result);
echo $row['id']."<br>".$row['address'];
}
?>
Powyższy przykład wyświetli:
Result: 1 1st Avenue, New York