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

cubrid_close - Close CUBRID connection | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

cubrid_close

(PECL CUBRID >= 8.3.1)

cubrid_closeClose CUBRID connection

説明

bool cubrid_close ([ resource $conn_identifier ] )

The cubrid_close() function ends the transaction currently in process, closes the connection handle and disconnects from server. If there is any request handles not closed yet at this point, they will be closed. It is similar to the CUBRID function cubrid_disconnect().

パラメータ

conn_identifier

The CUBRID connection identifier. If the connection identifier is not specified, the last connection opened by cubrid_connect() is assumed.

返り値

TRUE, when process is successful.

FALSE, when process is unsuccessful.

例1 cubrid_close() example

<?php
$con 
cubrid_connect ("localhost"33000"demodb");
if (
$con) {
   echo 
"connected successfully";
   
$req cubrid_execute $con"insert into person values(1,'James')");
   if (
$req) {
      
cubrid_close_request ($req);
      
cubrid_commit ($con);
   } else {
      
cubrid_rollback ($con);
   }
   
cubrid_close ($con);
}
?>

参考


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

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