cubrid_close_prepare
cubrid_close_prepare
Close the request handle
bool **cubrid_close_prepare** resource $req_identifier
The function closes the request
handle given by the argument, and
releases the memory region related to the handle. It is an alias of
.
cubrid_close_prepare``req_identifier``cubrid_close_request
req_identifierRequest identifier.
Return true on success.
Voorbeeld: example
<?php
$con = cubrid_connect ("localhost", 33000, "demodb", "dba", "");
if ($con) {
echo "connected successfully";
$req = cubrid_execute ( $con, "select * from members",
CUBRID_INCLUDE_OID | CUBRID_ASYNC);
if ($req) {
while ( list ($id, $name) = cubrid_fetch ($req) ){
echo $id;
echo $name;
}
cubrid_close_prepare($req); // or you can use cubrid_close_request($req)
}
cubrid_disconnect($con);
}
?>
cubrid_close_request