From aca706a4e2c3e5c7b149ebd5d246d35e28668b32 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Fri, 30 Jan 2004 22:51:43 +0000 Subject: [PATCH] added docu for stmt->data_seek and mysql->multi_query git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150185 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../mysqli/functions/mysqli-multi-query.xml | 73 +++++++++++++++++++ .../functions/mysqli-stmt-data-seek.xml | 66 +++++++++++++++++ 2 files changed, 139 insertions(+) create mode 100644 reference/mysqli/functions/mysqli-multi-query.xml create mode 100644 reference/mysqli/functions/mysqli-stmt-data-seek.xml diff --git a/reference/mysqli/functions/mysqli-multi-query.xml b/reference/mysqli/functions/mysqli-multi-query.xml new file mode 100644 index 0000000000..4b9ed8aa8b --- /dev/null +++ b/reference/mysqli/functions/mysqli-multi-query.xml @@ -0,0 +1,73 @@ + + + + + mysqli_multi_query + mysqli->multi_query + Performs a query on the database + + + Description + Procedural style: + + boolmysqli_multi_query + objectlink + stringquery + + Object oriented style (method): + + mysqli + + bool + multi_query + stringquery + + + + The mysqli_multi_query executes one or multiple queries + which are concatenated by a semicolon. + + + To retrieve the resultset from the first query you can use + mysqli_use_result or mysqli_store_result. + All subsequent query results can be processed using + mysqli_more_results and mysqli_next_result. + + + + Return values + + &return.success; + + + + See also + + mysqli_use_result, + mysqli_store_result, + mysqli_next_result, + mysqli_more_results + + + + + diff --git a/reference/mysqli/functions/mysqli-stmt-data-seek.xml b/reference/mysqli/functions/mysqli-stmt-data-seek.xml new file mode 100644 index 0000000000..b3938deea8 --- /dev/null +++ b/reference/mysqli/functions/mysqli-stmt-data-seek.xml @@ -0,0 +1,66 @@ + + + + + mysqli_stmt_data_seek + stmt->data_seek + Seeks to an arbitray row in statement result set + + + Description + Procedural style: + + boolmysqli_stmt_data_seek + objectstatement + intoffset + + Object oriented style (method): + + stmt + + bool + data_seek + intoffset + + + + The mysqli_stmt_data_seek function seeks to an arbitrary result pointer + specified by the offset in the statement result set represented by + statement. The offset parameter must be between + zero and the total number of rows minus one (0..mysqli_stmt_num_rows - 1). + + + + Return values + + &return.success; + + + + See also + + mysqli_prepare + + + + +