List:Commits« Previous MessageNext Message »
From:mcbrown Date:May 16 2008 1:41pm
Subject:svn commit - mysqldoc@docsrva: r10757 - in trunk: refman-5.1 refman-6.0 refman-common
View as plain text  
Author: mcbrown
Date: 2008-05-16 15:41:57 +0200 (Fri, 16 May 2008)
New Revision: 10757

Log:
Fixing some Docs bugs: 

Bug #35833
Bug #35670
Bug #35689



Modified:
   trunk/refman-5.1/installing-core.xml
   trunk/refman-6.0/installing-core.xml
   trunk/refman-common/connector-odbc.xml
   trunk/refman-common/mysql-proxy.xml


Modified: trunk/refman-5.1/installing-core.xml
===================================================================
--- trunk/refman-5.1/installing-core.xml	2008-05-16 13:17:56 UTC (rev 10756)
+++ trunk/refman-5.1/installing-core.xml	2008-05-16 13:41:57 UTC (rev 10757)
Changed blocks: 1, Lines Added: 5, Lines Deleted: 0; 612 bytes

@@ -8501,6 +8501,11 @@
       </orderedlist>
 
       <para>
+        To continue building MySQL on Windows, see
+        <xref linkend="windows-source-build"/>.
+      </para>
+
+      <para>
         The BitKeeper free client is shipped with its source code. The
         only documentation available for the free client is the source
         code itself.


Modified: trunk/refman-6.0/installing-core.xml
===================================================================
--- trunk/refman-6.0/installing-core.xml	2008-05-16 13:17:56 UTC (rev 10756)
+++ trunk/refman-6.0/installing-core.xml	2008-05-16 13:41:57 UTC (rev 10757)
Changed blocks: 1, Lines Added: 5, Lines Deleted: 0; 612 bytes

@@ -8535,6 +8535,11 @@
       </orderedlist>
 
       <para>
+        To continue building MySQL on Windows, see
+        <xref linkend="windows-source-build"/>.
+      </para>
+
+      <para>
         The BitKeeper free client is shipped with its source code. The
         only documentation available for the free client is the source
         code itself.


Modified: trunk/refman-common/connector-odbc.xml
===================================================================
--- trunk/refman-common/connector-odbc.xml	2008-05-16 13:17:56 UTC (rev 10756)
+++ trunk/refman-common/connector-odbc.xml	2008-05-16 13:41:57 UTC (rev 10757)
Changed blocks: 2, Lines Added: 28, Lines Deleted: 1; 1470 bytes

@@ -2869,7 +2869,9 @@
               <entry>8</entry>
               <entry><literal>FLAG_BIG_PACKETS</literal></entry>
               <entry>Allow Big Results</entry>
-              <entry>Don't set any packet limit for results and parameters.</entry>
+              <entry>Don't set any packet limit for results and bind parameters. Without this
+                option, parameter binding will be truncated to 255
+                characters.</entry>
             </row>
             <row>
               <entry>16</entry>

@@ -9221,6 +9223,31 @@
 
         </qandaentry>
 
+        <qandaentry>
+
+          <question>
+
+            <para>
+              When submitting queries with parameter binding using
+              <literal>UPDATE</literal>, my field values are being
+              truncated to 255 characters.
+            </para>
+
+          </question>
+
+          <answer>
+
+            <para>
+              You should ensure that the
+              <literal>FLAG_BIG_PACKETS</literal> option is set for your
+              connection. This removes the 255 character limitation on
+              bound parameters.
+            </para>
+
+          </answer>
+
+        </qandaentry>
+
       </qandaset>
 
     </section>


Modified: trunk/refman-common/mysql-proxy.xml
===================================================================
--- trunk/refman-common/mysql-proxy.xml	2008-05-16 13:17:56 UTC (rev 10756)
+++ trunk/refman-common/mysql-proxy.xml	2008-05-16 13:41:57 UTC (rev 10757)
Changed blocks: 2, Lines Added: 2, Lines Deleted: 2; 838 bytes

@@ -1941,7 +1941,7 @@
       </para>
 
 <programlisting>for row in inj.resultset.rows do
-        print("injected query returned: " .. row[0])
+        print("injected query returned: " .. row[1])
 end</programlisting>
 
       <para>

@@ -1983,7 +1983,7 @@
 function read_query_result(inj)
         if inj.id == 2 then
                 for row in inj.resultset.rows do
-                        print("injected query returned: " .. row[0])
+                        print("injected query returned: " .. row[1])
                 end
                 return proxy.PROXY_IGNORE_RESULT
         else


Thread
svn commit - mysqldoc@docsrva: r10757 - in trunk: refman-5.1 refman-6.0 refman-commonmcbrown16 May