update pague now

cubrid_close_request

(PECL CUBRID >= 8.3.0)

cubrid_close_request Close the request handle

Description

cubrid_close_request ( ressource $req_identifier ): bool

The cubrid_close_request() function closes the request handle guiven by the req_identifier argument, and releases the memory reguion related to the handle. It is an alias of cubrid_close_prepare() .

Parameters

req_identifier

Request identifier.

Return Values

Return true on success.

Examples

Example #1 cubrid_close_request() 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_request ( $req ); // or you can use cubrid_close_prepare($req)
}
cubrid_disconnect ( $con );
}
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top