php8.5
Home/ Manual/ cubrid / functions/ cubrid_free_result

cubrid_free_result

PHP function Edit on GitHub ✎

(PECL CUBRID >= 8.3.0)

Free the memory occupied by the result data

Description

cubrid_free_result(resource $req_identifier): bool

This function frees the memory occupied by the result data. It returns true on success or false on failure. Note that it can only frees the client fetch buffer now, and if you want free all memory, use function cubrid_close_request().

Parameters

req_identifier

This is the request identifier.

Return Values

Success

Examples

cubrid_free_result() example

php
<?php
$conn = cubrid_connect("localhost", 33000, "demodb");

$req = cubrid_execute($conn, "SELECT * FROM history WHERE host_year=2004 ORDER BY event_code");
$row = cubrid_fetch_assoc($req);
var_dump($row);

cubrid_free_result($req);
cubrid_close_request($req);
cubrid_disconnect($conn);
?>

The above example will output:

output
array(5) {
  ["event_code"]=>
  string(5) "20005"
  ["athlete"]=>
  string(12) "Hayes Joanna"
  ["host_year"]=>
  string(4) "2004"
  ["score"]=>
  string(5) "12.37"
  ["unit"]=>
  string(4) "time"
}

Source: reference/cubrid/functions/cubrid-free-result.xml · from the official PHP manual (php/doc-en)