Cubrid Functions
PHP Manual

cubrid_commit

(PHP 4, PHP 5)

cubrid_commitIs used to execute commit on the transaction

Description

int cubrid_commit ( int $conn_handle )

The cubrid_commit() function is used to execute commit on the transaction pointed by conn_handle, currently on progress. Connection to the server is closed after the cubrid_commit() function is called; the connection handle is still valid, however.

Parameters

conn_handle

Connection handle.

Return Values

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Examples

Example #1 cubrid_commit() example

<?php
$req 
cubrid_execute ($oid"insert into person values (2,’John’)");
if (
$req) {
   
cubrid_close_request ($req);
   if (
$failed) {
      
cubrid_rollback ($con);
   } else {
      
cubrid_commit ($con);
   }
}
?>

See Also


Cubrid Functions
PHP Manual