Author: paul
Date: 2006-04-19 19:12:52 +0200 (Wed, 19 Apr 2006)
New Revision: 1868
Log:
r4543@kite-hub: paul | 2006-04-19 11:14:57 -0500
Put earlier the information that you zero a MYSQL_BIND to initialize it.
Modified:
trunk/
trunk/refman-4.1/apis.xml
trunk/refman-5.0/apis.xml
trunk/refman-5.1/apis.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6745
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9568
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4542
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6745
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9568
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4543
Modified: trunk/refman-4.1/apis.xml
===================================================================
--- trunk/refman-4.1/apis.xml 2006-04-19 17:12:37 UTC (rev 1867)
+++ trunk/refman-4.1/apis.xml 2006-04-19 17:12:52 UTC (rev 1868)
@@ -8079,6 +8079,19 @@
</para>
<para>
+ To use a <literal>MYSQL_BIND</literal> structure, you should
+ zero its contents to initialize it, and then set its members
+ appropriately. For example, to declare and initialize an
+ array of three <literal>MYSQL_BIND</literal> structures, use
+ this code:
+ </para>
+
+<programlisting>
+MYSQL_BIND bind[3];
+memset(bind, 0, sizeof(bind));
+</programlisting>
+
+ <para>
The <literal>MYSQL_BIND</literal> structure contains the
following members for use by application programs. Each is
used both for input and for output, although sometimes for
@@ -8251,19 +8264,6 @@
</listitem>
</itemizedlist>
-
- <para>
- To use a <literal>MYSQL_BIND</literal> structure, you should
- zero its contents to initialize it, and then set the members
- just described appropriately. For example, to declare and
- initialize an array of three <literal>MYSQL_BIND</literal>
- structures, use this code:
- </para>
-
-<programlisting>
-MYSQL_BIND bind[3];
-memset(bind, 0, sizeof(bind));
-</programlisting>
</listitem>
<listitem>
Modified: trunk/refman-5.0/apis.xml
===================================================================
--- trunk/refman-5.0/apis.xml 2006-04-19 17:12:37 UTC (rev 1867)
+++ trunk/refman-5.0/apis.xml 2006-04-19 17:12:52 UTC (rev 1868)
@@ -8236,6 +8236,19 @@
</para>
<para>
+ To use a <literal>MYSQL_BIND</literal> structure, you should
+ zero its contents to initialize it, and then set its members
+ appropriately. For example, to declare and initialize an
+ array of three <literal>MYSQL_BIND</literal> structures, use
+ this code:
+ </para>
+
+<programlisting>
+MYSQL_BIND bind[3];
+memset(bind, 0, sizeof(bind));
+</programlisting>
+
+ <para>
The <literal>MYSQL_BIND</literal> structure contains the
following members for use by application programs. Each is
used both for input and for output, although sometimes for
@@ -8431,19 +8444,6 @@
</listitem>
</itemizedlist>
-
- <para>
- To use a <literal>MYSQL_BIND</literal> structure, you should
- zero its contents to initialize it, and then set the members
- just described appropriately. For example, to declare and
- initialize an array of three <literal>MYSQL_BIND</literal>
- structures, use this code:
- </para>
-
-<programlisting>
-MYSQL_BIND bind[3];
-memset(bind, 0, sizeof(bind));
-</programlisting>
</listitem>
<listitem>
Modified: trunk/refman-5.1/apis.xml
===================================================================
--- trunk/refman-5.1/apis.xml 2006-04-19 17:12:37 UTC (rev 1867)
+++ trunk/refman-5.1/apis.xml 2006-04-19 17:12:52 UTC (rev 1868)
@@ -8105,6 +8105,19 @@
</para>
<para>
+ To use a <literal>MYSQL_BIND</literal> structure, you should
+ zero its contents to initialize it, and then set its members
+ appropriately. For example, to declare and initialize an
+ array of three <literal>MYSQL_BIND</literal> structures, use
+ this code:
+ </para>
+
+<programlisting>
+MYSQL_BIND bind[3];
+memset(bind, 0, sizeof(bind));
+</programlisting>
+
+ <para>
The <literal>MYSQL_BIND</literal> structure contains the
following members for use by application programs. Each is
used both for input and for output, although sometimes for
@@ -8299,19 +8312,6 @@
</listitem>
</itemizedlist>
-
- <para>
- To use a <literal>MYSQL_BIND</literal> structure, you should
- zero its contents to initialize it, and then set the members
- just described appropriately. For example, to declare and
- initialize an array of three <literal>MYSQL_BIND</literal>
- structures, use this code:
- </para>
-
-<programlisting>
-MYSQL_BIND bind[3];
-memset(bind, 0, sizeof(bind));
-</programlisting>
</listitem>
<listitem>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r1868 - in trunk: . refman-4.1 refman-5.0 refman-5.1 | paul | 19 Apr |