PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

cubrid_close_prepare

(PECL CUBRID >= 8.3.0)

cubrid_close_prepareClose the request handle

Description

int cubrid_close_prepare ( resource $req_identifier )

The cubrid_close_prepare() function closes the request handle given by the req_identifier argument, and releases the memory region related to the handle.

Parameters

req_identifier

Request identifier.

Return Values

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Examples

Example #1 cubrid_close_prepare() example

<?php
$con 
cubrid_connect ("dbsvr.cubrid.com"12345"demodb");
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($re1);
   }
   
cubrid_disconnect($con);
}
?>

See Also

PHP Manual