(PECL CUBRID >= 8.3.0)
Close the request handle
bool cubrid_close_request ( resource $req_identifier )
The cubrid_close_request() function closes the request handle given by the req_identifier
argument, and releases the memory region related to the handle. It is an alias of cubrid_close_prepare().
Parameters:
req_identifier
Request identifier.
Returns:
Return TRUE
on success.
Examples:
cubrid_close_request() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?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:
Please login to continue.