From 577ff9add3da28a54fa1fab13dfda51392c1dfa7 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 15 May 2013 19:04:09 +0000 Subject: [PATCH] Document PHP 5.5 MySQLi parameters git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330227 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/constants.xml | 36 ++++++++++++++++++++++ reference/mysqli/mysqli/commit.xml | 46 +++++++++++++++++++++++++++- reference/mysqli/mysqli/rollback.xml | 46 +++++++++++++++++++++++++++- 3 files changed, 126 insertions(+), 2 deletions(-) diff --git a/reference/mysqli/constants.xml b/reference/mysqli/constants.xml index 0d10b35d99..4801ddd990 100644 --- a/reference/mysqli/constants.xml +++ b/reference/mysqli/constants.xml @@ -698,6 +698,42 @@ + + MYSQLI_TRANS_COR_AND_CHAIN + + + Appends "AND CHAIN" to mysqli_commit or + mysqli_rollback. + + + + + MYSQLI_TRANS_COR_AND_NO_CHAIN + + + Appends "AND NO CHAIN" to mysqli_commit or + mysqli_rollback. + + + + + MYSQLI_TRANS_COR_RELEASE + + + Appends "RELEASE" to mysqli_commit or + mysqli_rollback. + + + + + MYSQLI_TRANS_COR_NO_RELEASE + + + Appends "NO RELEASE" to mysqli_commit or + mysqli_rollback. + + + diff --git a/reference/mysqli/mysqli/commit.xml b/reference/mysqli/mysqli/commit.xml index fe1a26230b..94254d89a6 100644 --- a/reference/mysqli/mysqli/commit.xml +++ b/reference/mysqli/mysqli/commit.xml @@ -12,12 +12,15 @@ &style.oop; boolmysqli::commit - + intflags + stringname &style.procedural; boolmysqli_commit mysqlilink + intflags + stringname Commits the current transaction for the database connection. @@ -29,6 +32,22 @@ &mysqli.link.description; + + flags + + + A bitmask of MYSQLI_TRANS_COR_* constants. + + + + + name + + + If provided then COMMIT/*name*/ is executed. + + + @@ -40,6 +59,31 @@ + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 5.5.0 + + Added flags and name + parameters. + + + + + + + + &reftitle.examples; diff --git a/reference/mysqli/mysqli/rollback.xml b/reference/mysqli/mysqli/rollback.xml index 38d85e0c69..9101d8b9a7 100644 --- a/reference/mysqli/mysqli/rollback.xml +++ b/reference/mysqli/mysqli/rollback.xml @@ -12,12 +12,15 @@ &style.oop; boolmysqli::rollback - + intflags + stringname &style.procedural; boolmysqli_rollback mysqlilink + intflags + stringname Rollbacks the current transaction for the database. @@ -29,6 +32,22 @@ &mysqli.link.description; + + flags + + + A bitmask of MYSQLI_TRANS_COR_* constants. + + + + + name + + + If provided then ROLLBACK/*name*/ is executed. + + + @@ -40,6 +59,31 @@ + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 5.5.0 + + Added flags and name + parameters. + + + + + + + + &reftitle.examples;