From 520215ff825dd8db294ac8cb85996282d21457a0 Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Fri, 11 Apr 2003 09:49:03 +0000 Subject: [PATCH] bugfix for #23143 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@123129 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysql/functions/mysql-query.xml | 12 ++---------- reference/mysql/functions/mysql-unbuffered-query.xml | 10 +--------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/reference/mysql/functions/mysql-query.xml b/reference/mysql/functions/mysql-query.xml index 5618d61c49..50f0508d80 100644 --- a/reference/mysql/functions/mysql-query.xml +++ b/reference/mysql/functions/mysql-query.xml @@ -1,5 +1,5 @@ - + @@ -12,7 +12,6 @@ resourcemysql_query stringquery resourcelink_identifier - intresult_mode mysql_query sends a query to the currently @@ -21,14 +20,7 @@ link_identifier isn't specified, the last opened link is assumed. If no link is open, the function tries to establish a link as if mysql_connect was - called with no arguments, and use it. - - - The optional result_mode parameter - can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. It - defaults to MYSQL_STORE_RESULT, so the result is buffered. - See also mysql_unbuffered_query for the - counterpart of this behaviour. + called with no arguments, and use it. The result of the query is bufferd. diff --git a/reference/mysql/functions/mysql-unbuffered-query.xml b/reference/mysql/functions/mysql-unbuffered-query.xml index a7990b026e..ee3c8b41cc 100644 --- a/reference/mysql/functions/mysql-unbuffered-query.xml +++ b/reference/mysql/functions/mysql-unbuffered-query.xml @@ -1,5 +1,5 @@ - + @@ -15,7 +15,6 @@ resourcemysql_unbuffered_query stringquery resourcelink_identifier - intresult_mode mysql_unbuffered_query sends a SQL query @@ -30,13 +29,6 @@ have to specify the optional parameter link_identifier. - - The optional result_mode parameter - can be MYSQL_USE_RESULT and MYSQL_STORE_RESULT. It - defaults to MYSQL_USE_RESULT, so the result is not buffered. - See also mysql_query for the - counterpart of this behaviour. - The benefits of mysql_unbuffered_query come