PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

cubrid_close_request - Close the request handle | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

cubrid_close_request

(PECL CUBRID >= 8.3.0)

cubrid_close_requestClose 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().

パラメータ

req_identifier

Request identifier.

返り値

Return TRUE on success.

例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);
}
?>

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「cubrid_close_request - Close the request handle」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | cubrid_close_request - Close the request handle」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: