PHP Doku:: Executes rollback on the transaction - function.cubrid-rollback.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_rollback

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_result

cubrid_save_to_glo>>

cubrid_rollback

(PECL CUBRID >= 8.3.0)

cubrid_rollbackExecutes rollback on the transaction

Beschreibung

int cubrid_rollback ( resource $conn_identifier )

The cubrid_rollback() function executes rollback on the transaction pointed by conn_handle, currently in progress.

Connection to server is closed after calling cubrid_rollback(). Connection handle, however, is still valid.

Parameter-Liste

conn_identifier

Connection identifier.

Rückgabewerte

TRUE, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_rollback() 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);
   }
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)