From 807f1ae20b9ec3cfd21266d640c98ef70c0a5fde Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Sat, 3 Mar 2007 03:20:43 +0000 Subject: [PATCH] Document fbsql_rows_fetched() and fbsql_set_transaction() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@231060 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../fbsql/functions/fbsql-rows-fetched.xml | 24 +++++++++++++++---- .../fbsql/functions/fbsql-set-transaction.xml | 18 ++++++++++++-- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/reference/fbsql/functions/fbsql-rows-fetched.xml b/reference/fbsql/functions/fbsql-rows-fetched.xml index 1c3f6a6460..ab6b01c4ed 100644 --- a/reference/fbsql/functions/fbsql-rows-fetched.xml +++ b/reference/fbsql/functions/fbsql-rows-fetched.xml @@ -1,19 +1,35 @@ - + fbsql_rows_fetched - + Get the number of rows affected by the last statement &reftitle.description; intfbsql_rows_fetched - resourceresult + resourceresult - &warn.undocumented.func; + Gets the number of rows affected by the last statement. + + + + + &reftitle.parameters; + + + &fbsql.result.description; + + + + + + &reftitle.returnvalues; + + Returns the number of rows, as an integer. diff --git a/reference/fbsql/functions/fbsql-set-transaction.xml b/reference/fbsql/functions/fbsql-set-transaction.xml index f986f2b8c4..8334cdd341 100644 --- a/reference/fbsql/functions/fbsql-set-transaction.xml +++ b/reference/fbsql/functions/fbsql-set-transaction.xml @@ -1,5 +1,5 @@ - + fbsql_set_transaction @@ -14,7 +14,10 @@ intlocking intisolation - &warn.undocumented.func; + + Sets the transaction locking and + isolation. + @@ -26,6 +29,10 @@ locking + The type of locking to be set. It can be one of the following + constants: FBSQL_LOCK_DEFERRED, + FBSQL_LOCK_OPTIMISTIC, + or FBSQL_LOCK_PESSIMISTIC. @@ -33,6 +40,12 @@ isolation + The type of isolation to be set. It can be one of the following + constants: FBSQL_ISO_READ_UNCOMMITTED, + FBSQL_ISO_READ_COMMITTED, + FBSQL_ISO_REPEATABLE_READ, + FBSQL_ISO_SERIALIZABLE, + or FBSQL_ISO_VERSIONED. @@ -46,6 +59,7 @@ &return.void; +