From e2c654e53383562352e36321f5c7753f3ba759b6 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 5 Apr 2005 14:01:04 +0000 Subject: [PATCH] Replace obsolete mysqli_fetch() with mysqli_stmt_fetch() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@183662 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/functions/mysqli-stmt-execute.xml | 6 +++--- reference/mysqli/functions/mysqli-stmt-result-metadata.xml | 4 ++-- reference/mysqli/functions/mysqli-stmt-store-result.xml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/reference/mysqli/functions/mysqli-stmt-execute.xml b/reference/mysqli/functions/mysqli-stmt-execute.xml index 1aad43a1f0..39cd1f6c60 100644 --- a/reference/mysqli/functions/mysqli-stmt-execute.xml +++ b/reference/mysqli/functions/mysqli-stmt-execute.xml @@ -1,5 +1,5 @@ - + mysqli_stmt_execute @@ -30,11 +30,11 @@ If the statement is UPDATE, DELETE, or INSERT, the total number of affected rows can be determined by using the mysqli_stmt_affected_rows function. Likewise, - if the query yields a result set the mysqli_fetch function is used. + if the query yields a result set the mysqli_stmt_fetch function is used. - When using mysqli_stmt_execute, the mysqli_fetch + When using mysqli_stmt_execute, the mysqli_stmt_fetch function must be used to fetch the data prior to performing any additional queries. diff --git a/reference/mysqli/functions/mysqli-stmt-result-metadata.xml b/reference/mysqli/functions/mysqli-stmt-result-metadata.xml index e85e2b5ccc..643695e569 100644 --- a/reference/mysqli/functions/mysqli-stmt-result-metadata.xml +++ b/reference/mysqli/functions/mysqli-stmt-result-metadata.xml @@ -1,5 +1,5 @@ - + mysqli_stmt_result_metadata @@ -49,7 +49,7 @@ The result set returned by mysqli_stmt_result_metadata contains only metadata. It does not contain any row results. The rows are obtained by using the - statement handle with mysqli_fetch. + statement handle with mysqli_stmt_fetch. diff --git a/reference/mysqli/functions/mysqli-stmt-store-result.xml b/reference/mysqli/functions/mysqli-stmt-store-result.xml index af536ec1fc..597faadc8e 100644 --- a/reference/mysqli/functions/mysqli-stmt-store-result.xml +++ b/reference/mysqli/functions/mysqli-stmt-store-result.xml @@ -1,5 +1,5 @@ - + mysqli_stmt_store_result @@ -25,7 +25,7 @@ You must call mysqli_stmt_store_result for every query that successfully produces a result set (SELECT, SHOW, DESCRIBE, EXPLAIN), and only if you want to buffer the complete result set by the client, - so that the subsequent mysqli_fetch call returns buffered data. + so that the subsequent mysqli_stmt_fetch call returns buffered data. @@ -45,7 +45,7 @@ mysqli_prepare, mysqli_stmt_result_metadata&listendand; - mysqli_fetch. + mysqli_stmt_fetch.