From 0867494b3550bf518849800a606bde53a62bc587 Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Mon, 1 Sep 2003 23:51:29 +0000 Subject: [PATCH] Fixed prototypes and corrected descriptions git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@139416 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/ibase/functions/ibase-commit.xml | 10 ++++++---- reference/ibase/functions/ibase-rollback.xml | 12 +++++++----- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/reference/ibase/functions/ibase-commit.xml b/reference/ibase/functions/ibase-commit.xml index 897c8852d5..5995625b4c 100644 --- a/reference/ibase/functions/ibase-commit.xml +++ b/reference/ibase/functions/ibase-commit.xml @@ -1,5 +1,5 @@ - + @@ -11,11 +11,13 @@ boolibase_commit resourcelink_identifier - inttrans_number - Commits transaction trans_number which was - created with ibase_trans. &return.success; + If called without an argument, this function commits the default transaction + of the default link. If the argument is a connection identifier, the default + transaction of the corresponding connection will be committed. If the argument + is a transaction identifier, the corresponding transaction will be committed. + &return.success; diff --git a/reference/ibase/functions/ibase-rollback.xml b/reference/ibase/functions/ibase-rollback.xml index 012a552922..f79ccd300e 100644 --- a/reference/ibase/functions/ibase-rollback.xml +++ b/reference/ibase/functions/ibase-rollback.xml @@ -1,21 +1,23 @@ - + ibase_rollback - Rolls back a transaction + Roll back a transaction Description boolibase_rollback resourcelink_identifier - inttrans_number - Rolls back transaction trans_number which was - created with ibase_trans. &return.success; + If called without an argument, this function rolls back the default transaction + of the default link. If the argument is a connection identifier, the default + transaction of the corresponding connection will be rolled back. If the argument + is a transaction identifier, the corresponding transaction will be rolled back. + &return.success;