Author: paul
Date: 2007-04-30 15:14:02 +0200 (Mon, 30 Apr 2007)
New Revision: 6268
Log:
r19829@frost: paul | 2007-04-30 08:12:12 -0500
Fix errors in mysql_error() section. (Kent)
Modified:
trunk/refman-4.1/apis-c.xml
trunk/refman-5.0/apis-c.xml
trunk/refman-5.1/apis-c.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:24230
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:19790
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:24230
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:19829
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
Modified: trunk/refman-4.1/apis-c.xml
===================================================================
--- trunk/refman-4.1/apis-c.xml 2007-04-30 12:18:08 UTC (rev 6267)
+++ trunk/refman-4.1/apis-c.xml 2007-04-30 13:14:02 UTC (rev 6268)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 2; 590 bytes
@@ -2504,12 +2504,12 @@
</para>
<para>
- For functions that reset <literal>mysql_errno()</literal>, the
+ For functions that reset <literal>mysql_error()</literal>, the
following two tests are equivalent:
</para>
<programlisting>
-if(*mysql_errno(&mysql))
+if(*mysql_error(&mysql))
{
// an error occurred
}
Modified: trunk/refman-5.0/apis-c.xml
===================================================================
--- trunk/refman-5.0/apis-c.xml 2007-04-30 12:18:08 UTC (rev 6267)
+++ trunk/refman-5.0/apis-c.xml 2007-04-30 13:14:02 UTC (rev 6268)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 2; 590 bytes
@@ -2489,12 +2489,12 @@
</para>
<para>
- For functions that reset <literal>mysql_errno()</literal>, the
+ For functions that reset <literal>mysql_error()</literal>, the
following two tests are equivalent:
</para>
<programlisting>
-if(*mysql_errno(&mysql))
+if(*mysql_error(&mysql))
{
// an error occurred
}
Modified: trunk/refman-5.1/apis-c.xml
===================================================================
--- trunk/refman-5.1/apis-c.xml 2007-04-30 12:18:08 UTC (rev 6267)
+++ trunk/refman-5.1/apis-c.xml 2007-04-30 13:14:02 UTC (rev 6268)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 2; 590 bytes
@@ -2479,12 +2479,12 @@
</para>
<para>
- For functions that reset <literal>mysql_errno()</literal>, the
+ For functions that reset <literal>mysql_error()</literal>, the
following two tests are equivalent:
</para>
<programlisting>
-if(*mysql_errno(&mysql))
+if(*mysql_error(&mysql))
{
// an error occurred
}
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r6268 - in trunk: . refman-4.1 refman-5.0 refman-5.1 | paul | 30 Apr |