colder Wed Sep 6 09:48:43 2006 UTC
Modified files: /phpdoc/en/reference/mysql/functions mysql-num-rows.xml /phpdoc/en/reference/mysqli/functions mysqli-affected-rows.xml Log: Fix #38730 (Include REPLACE in the description) http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/mysql/functions/mysql-num-rows.xml?r1=1.9&r2=1.10&diff_format=u Index: phpdoc/en/reference/mysql/functions/mysql-num-rows.xml diff -u phpdoc/en/reference/mysql/functions/mysql-num-rows.xml:1.9 phpdoc/en/reference/mysql/functions/mysql-num-rows.xml:1.10 --- phpdoc/en/reference/mysql/functions/mysql-num-rows.xml:1.9 Thu Aug 31 18:36:23 2006 +++ phpdoc/en/reference/mysql/functions/mysql-num-rows.xml Wed Sep 6 09:48:43 2006 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.9 $ --> +<!-- $Revision: 1.10 $ --> <refentry id="function.mysql-num-rows"> <refnamediv> <refname>mysql_num_rows</refname> @@ -15,8 +15,8 @@ <para> Retrieves the number of rows from a result set. This command is only valid for statements like SELECT or SHOW that return an actual result set. - To retrieve the number of rows affected by a INSERT, - UPDATE, or DELETE query, use <function>mysql_affected_rows</function>. + To retrieve the number of rows affected by a INSERT, UPDATE, REPLACE or + DELETE query, use <function>mysql_affected_rows</function>. </para> </refsect1> http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml?r1=1.19&r2=1.20&diff_format=u Index: phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml diff -u phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml:1.19 phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml:1.20 --- phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml:1.19 Thu Jun 23 16:53:26 2005 +++ phpdoc/en/reference/mysqli/functions/mysqli-affected-rows.xml Wed Sep 6 09:48:43 2006 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.19 $ --> +<!-- $Revision: 1.20 $ --> <refentry id="function.mysqli-affected-rows"> <refnamediv> <refname>mysqli_affected_rows</refname> @@ -20,7 +20,7 @@ </classsynopsis> <para> <function>mysqli_affected_rows</function> returns the number of rows affected by the last - INSERT, UPDATE, or DELETE query associated with the provided <parameter>link</parameter> + INSERT, UPDATE, REPLACE or DELETE query associated with the provided <parameter>link</parameter> parameter. If the last query was invalid, this function will return -1. </para> <note>