List:Commits« Previous MessageNext Message »
From:mcbrown Date:January 8 2007 11:56am
Subject:svn commit - mysqldoc@docsrva: r4397 - trunk/refman-common
View as plain text  
Author: mcbrown
Date: 2007-01-08 12:56:02 +0100 (Mon, 08 Jan 2007)
New Revision: 4397

Log:
Updating titles for sections in all connectors for parity.

Updated the C/NET info according to 5.0.3 release. 



Modified:
   trunk/refman-common/connector-j.xml
   trunk/refman-common/connector-mxj.xml
   trunk/refman-common/connector-net.xml
   trunk/refman-common/connector-odbc.xml
   trunk/refman-common/news-connector-net.xml


Modified: trunk/refman-common/connector-j.xml
===================================================================
--- trunk/refman-common/connector-j.xml	2007-01-08 11:17:49 UTC (rev 4396)
+++ trunk/refman-common/connector-j.xml	2007-01-08 11:56:02 UTC (rev 4397)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 490 bytes

@@ -186,7 +186,7 @@
 
   <section id="connector-j-installing">
 
-    <title>Installing Connector/J</title>
+    <title>Connector/J Installation</title>
 
     <para>
       You can install the Connector/J package using two methods, using


Modified: trunk/refman-common/connector-mxj.xml
===================================================================
--- trunk/refman-common/connector-mxj.xml	2007-01-08 11:17:49 UTC (rev 4396)
+++ trunk/refman-common/connector-mxj.xml	2007-01-08 11:56:02 UTC (rev 4397)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 501 bytes

@@ -172,7 +172,7 @@
 
   <section id="connector-mxj-install">
 
-    <title>Installing Connector/MXJ</title>
+    <title>Connector/MXJ Installation</title>
 
     <para>
       Connector/MXJ does not have a installation application or process,


Modified: trunk/refman-common/connector-net.xml
===================================================================
--- trunk/refman-common/connector-net.xml	2007-01-08 11:17:49 UTC (rev 4396)
+++ trunk/refman-common/connector-net.xml	2007-01-08 11:56:02 UTC (rev 4397)
Changed blocks: 14, Lines Added: 51, Lines Deleted: 33; 11873 bytes

@@ -106,12 +106,13 @@
   </para>
 
   <para>
-    If you are using MySQL 5.0 or later, and Visual Studio as your development environment, 
-you may want also want to use the MySQL Visual Studio
-    Plugin. The plugin acts as a DDEX (Data Designer Extensibility)
-    provider, enabling you to use the data design tools within Visual
-    Studio to manipulate the schema and objects within a MySQL database.
-    For more information, see <xref linkend="connector-vstudio"/>.
+    If you are using MySQL 5.0 or later, and Visual Studio as your
+    development environment, you may want also want to use the MySQL
+    Visual Studio Plugin. The plugin acts as a DDEX (Data Designer
+    Extensibility) provider, enabling you to use the data design tools
+    within Visual Studio to manipulate the schema and objects within a
+    MySQL database. For more information, see
+    <xref linkend="connector-vstudio"/>.
   </para>
 
   <section id="connector-net-versions">

@@ -149,7 +150,7 @@
 
   <section id="connector-net-installation">
 
-    <title>How to install Connector/NET</title>
+    <title>Connector/NET Installation</title>
 
     <para>
       Connector/NET runs on any platform that supports the .NET

@@ -3746,15 +3747,18 @@
                 <entry>Description</entry>
               </row>
               <row>
-                <entry>Connect Timeout -or- Connection Timeout</entry>
+                <entry><literal>Connect Timeout</literal>, <literal>Connection
+                  Timeout</literal></entry>
                 <entry>15</entry>
                 <entry>The length of time (in seconds) to wait for a connection to the server
                   before terminating the attempt and generating an
                   error.</entry>
               </row>
               <row>
-                <entry>Host -or- Server -or- Data Source -or- DataSource -or- Address -or- Addr
-                  -or- Network Address</entry>
+                <entry><literal>Host</literal>, <literal>Server</literal>, <literal>Data
+                  Source</literal>, <literal>DataSource</literal>,
+                  <literal>Address</literal>, <literal>Addr</literal>,
+                  <literal>Network Address</literal></entry>
                 <entry>localhost</entry>
                 <entry>The name or network address of the instance of MySQL to which to
                   connect. Multiple hosts can be specified separated by

@@ -3772,14 +3776,25 @@
                   currently supported.</entry>
               </row>
               <row>
-                <entry>Port</entry>
+                <entry><literal>Ignore Prepare</literal></entry>
+                <entry>true</entry>
+                <entry>When true, instructs the provider to ignore any calls to
+                  MySqlCommand.Prepare(). This option is provided to
+                  prevent issues with corruption of the statements when
+                  use with server side prepared statements. If you want
+                  to use server-side prepare statements, set this option
+                  to false. This option was added in Connector/NET
+                  5.0.3.</entry>
+              </row>
+              <row>
+                <entry><literal>Port</literal></entry>
                 <entry>3306</entry>
                 <entry>The port MySQL is using to listen for connections. Specify -1 for this
                   value to use a named pipe connection (Windows only).
                   This value is ignored if Unix socket is used.</entry>
               </row>
               <row>
-                <entry>Protocol</entry>
+                <entry><literal>Protocol</literal></entry>
                 <entry>socket</entry>
                 <entry>Specifies the type of connection to make to the server.Values can be:
                   socket or tcp for a socket connection pipe for a named

@@ -3787,20 +3802,20 @@
                   memory to use MySQL shared memory</entry>
               </row>
               <row>
-                <entry>CharSet -or Character Set</entry>
+                <entry><literal>CharSet</literal>, <literal>Character Set</literal></entry>
                 <entry/>
                 <entry>Specifies the character set that should be used to encode all queries
                   sent to the server. Resultsets are still returned in
                   the character set of the data returned.</entry>
               </row>
               <row>
-                <entry>Logging</entry>
+                <entry><literal>Logging</literal></entry>
                 <entry>false</entry>
                 <entry>When true, various pieces of information is output to any configured
                   TraceListeners.</entry>
               </row>
               <row>
-                <entry>Allow Batch</entry>
+                <entry><literal>Allow Batch</literal></entry>
                 <entry>true</entry>
                 <entry>When true, multiple SQL statements can be sent with one command
                   execution. -Note- Starting with MySQL 4.1.1, batch

@@ -3809,7 +3824,7 @@
                   of MySQL should be seperated with ';'.</entry>
               </row>
               <row>
-                <entry>Encrypt</entry>
+                <entry><literal>Encrypt</literal></entry>
                 <entry>false</entry>
                 <entry>When <literal>true</literal>, SSL encryption is used for all data sent
                   between the client and server if the server has a

@@ -3820,17 +3835,17 @@
                   parameter currently has no effect.</entry>
               </row>
               <row>
-                <entry>Initial Catalog -or- Database</entry>
+                <entry><literal>Initial Catalog</literal>, <literal>Database</literal></entry>
                 <entry>mysql</entry>
                 <entry>The name of the database to use intially</entry>
               </row>
               <row>
-                <entry>Password -or- pwd</entry>
+                <entry><literal>Password</literal>, <literal>pwd</literal></entry>
                 <entry/>
                 <entry>The password for the MySQL account being used.</entry>
               </row>
               <row>
-                <entry>Persist Security Info</entry>
+                <entry><literal>Persist Security Info</literal></entry>
                 <entry>false</entry>
                 <entry>When set to <literal>false</literal> or <literal>no</literal> (strongly
                   recommended), security-sensitive information, such as

@@ -3843,18 +3858,19 @@
                   <literal>yes</literal>, and <literal>no</literal>.</entry>
               </row>
               <row>
-                <entry>User Id -or- Username -or- Uid -or- User name</entry>
+                <entry><literal>User Id</literal>, <literal>Username</literal>,
+                  <literal>Uid</literal>, <literal>User name</literal></entry>
                 <entry/>
                 <entry>The MySQL login account being used.</entry>
               </row>
               <row>
-                <entry>Shared Memory Name</entry>
+                <entry><literal>Shared Memory Name</literal></entry>
                 <entry>MYSQL</entry>
                 <entry>The name of the shared memory object to use for communication if the
                   connection protocol is set to memory.</entry>
               </row>
               <row>
-                <entry>Allow Zero Datetime</entry>
+                <entry><literal>Allow Zero Datetime</literal></entry>
                 <entry>false</entry>
                 <entry>True to have MySqlDataReader.GetValue() return a MySqlDateTime for date
                   or datetime columns that have illegal values. False

@@ -3863,14 +3879,14 @@
                   values.</entry>
               </row>
               <row>
-                <entry>Convert Zero Datetime</entry>
+                <entry><literal>Convert Zero Datetime</literal></entry>
                 <entry>false</entry>
                 <entry>True to have MySqlDataReader.GetValue() and
                   MySqlDataReader.GetDateTime() return DateTime.MinValue
                   for date or datetime columns that have illegal values.</entry>
               </row>
               <row>
-                <entry>Old Syntax -or- OldSyntax</entry>
+                <entry><literal>Old Syntax</literal>, <literal>OldSyntax</literal></entry>
                 <entry>false</entry>
                 <entry>Allows use of '@' symbol as a parameter marker. See
                   <literal>MySqlCommand</literal> for more info. This is

@@ -3878,7 +3894,7 @@
                   written to use the new '?' parameter marker.</entry>
               </row>
               <row>
-                <entry>Pipe Name -or- Pipe</entry>
+                <entry><literal>Pipe Name</literal>, <literal>Pipe</literal></entry>
                 <entry>mysql</entry>
                 <entry>When set to the name of a named pipe, the
                   <literal>MySqlConnection</literal> will attempt to

@@ -3908,7 +3924,7 @@
                 <entry>Description</entry>
               </row>
               <row>
-                <entry>Connection Lifetime</entry>
+                <entry><literal>Connection Lifetime</literal></entry>
                 <entry>0</entry>
                 <entry>When a connection is returned to the pool, its creation time is compared
                   with the current time, and the connection is destroyed

@@ -3920,17 +3936,17 @@
                   connections to have the maximum connection timeout.</entry>
               </row>
               <row>
-                <entry>Max Pool Size</entry>
+                <entry><literal>Max Pool Size</literal></entry>
                 <entry>100</entry>
                 <entry>The maximum number of connections allowed in the pool.</entry>
               </row>
               <row>
-                <entry>Min Pool Size</entry>
+                <entry><literal>Min Pool Size</literal></entry>
                 <entry>0</entry>
                 <entry>The minimum number of connections allowed in the pool.</entry>
               </row>
               <row>
-                <entry>Pooling</entry>
+                <entry><literal>Pooling</literal></entry>
                 <entry>true</entry>
                 <entry>When <literal>true</literal>, the <literal>MySqlConnection</literal>
                   object is drawn from the appropriate pool, or if

@@ -3940,8 +3956,9 @@
                   <literal>no</literal>.</entry>
               </row>
               <row>
-                <entry>Reset Pooled Connections -or- ResetConnections -or-
-                  ResetPooledConnections</entry>
+                <entry><literal>Reset Pooled Connections</literal>,
+                  <literal>ResetConnections</literal>,
+                  <literal>ResetPooledConnections</literal></entry>
                 <entry>true</entry>
                 <entry>Specifies whether a ping and a reset should be sent to the server before
                   a pooled connection is returned. Not resetting will

@@ -3949,8 +3966,9 @@
                   out session items such as temp tables.</entry>
               </row>
               <row>
-                <entry>Cache Server Configuration -or- CacheServerConfiguration -or-
-                  CacheServerConfig</entry>
+                <entry><literal>Cache Server Configuration</literal>,
+                  <literal>CacheServerConfiguration</literal>,
+                  <literal>CacheServerConfig</literal></entry>
                 <entry>false</entry>
                 <entry>Specifies whether server variables should be updated when a pooled
                   connection is returned. Turning this one will yeild


Modified: trunk/refman-common/connector-odbc.xml
===================================================================
--- trunk/refman-common/connector-odbc.xml	2007-01-08 11:17:49 UTC (rev 4396)
+++ trunk/refman-common/connector-odbc.xml	2007-01-08 11:56:02 UTC (rev 4397)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 500 bytes

@@ -480,7 +480,7 @@
 
   <section id="myodbc-installation">
 
-    <title>Installing Connector/ODBC</title>
+    <title>Connector/ODBC Installation</title>
 
     <para>
       You can install the Connector/ODBC drivers using two different


Modified: trunk/refman-common/news-connector-net.xml
===================================================================
--- trunk/refman-common/news-connector-net.xml	2007-01-08 11:17:49 UTC (rev 4396)
+++ trunk/refman-common/news-connector-net.xml	2007-01-08 11:56:02 UTC (rev 4397)
Changed blocks: 5, Lines Added: 97, Lines Deleted: 9; 4242 bytes

@@ -14,9 +14,90 @@
 
   <section id="connector-net-news-5.0.3">
 
-    <title>Changes in MySQL Connector/NET Version 5.0.3 (Not yet released)</title>
+    <title>Changes in MySQL Connector/NET Version 5.0.3 (5 January 2007)</title>
 
     <para>
+      Functionality added or changed:
+    </para>
+
+    <itemizedlist>
+
+      <listitem>
+        <para>
+          SSL support has been updated.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          The <literal>ViewColumns</literal>
+          <literal>GetSchema</literal> collection has been updated.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          The <literal>CommandBuilder.DeriveParameters</literal>
+          function has been updated to the procedure cache.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Improved speed and performance by re-architecting certain
+          sectionsof the code.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Usage Advisor has been implemented. The Usage Advisor checks
+          your queries and will report if you are usiing the connection
+          inefficiently.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          The <literal>MySqlCommand</literal> object now supports
+          asynchronous query methods. This is implemented useg the
+          <literal>BeginExecuteNonQuery</literal> and
+          <literal>EndExecuteNonQuery</literal> methods.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Metadata from storaed procedures and stored function execution
+          are cached.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          PerfMon hooks have been added to monitor the stored procedure
+          cache hits and misses.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          The ShapZipLib library has been replaced with the deflate
+          support provided within .NET 2.0.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Support for the embedded server and client library have been
+          removed from this release. Support will be added back to a
+          later release.
+        </para>
+      </listitem>
+
+    </itemizedlist>
+
+    <para>
       Bugs fixed:
     </para>
 

@@ -24,13 +105,21 @@
 
       <listitem>
         <para>
-          Nested transactions do not raise an error or warning. (Bug
-          #22400)
+          An exception would be raised, or the process would hang, if
+          <literal>SELECT</literal> privileges on a database were not
+          granted and a stored procedure was used. (Bug #25033)
         </para>
       </listitem>
 
       <listitem>
         <para>
+          Nested transactions (which are unsupported)do not raise an
+          error or warning. (Bug #22400)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           When adding parameter objects to a command object, if the
           parameter direction is set to <literal>ReturnValue</literal>
           before the parameter is added to the command object then when

@@ -893,8 +982,8 @@
 
       <listitem>
         <para>
-          The Connector/NET 1.0.5 installer would not install
-          alongside Connector/NET 1.0.4. (Bug #12835)
+          The Connector/NET 1.0.5 installer would not install alongside
+          Connector/NET 1.0.4. (Bug #12835)
         </para>
       </listitem>
 

@@ -925,8 +1014,8 @@
 
       <listitem>
         <para>
-          Connector/NET interpreted the new decimal data type as a
-          byte array. (Bug #11294)
+          Connector/NET interpreted the new decimal data type as a byte
+          array. (Bug #11294)
         </para>
       </listitem>
 

@@ -1019,8 +1108,7 @@
 
       <listitem>
         <para>
-          Connector/NET could not connect to MySQL 4.1.14. (Bug
-          #12771)
+          Connector/NET could not connect to MySQL 4.1.14. (Bug #12771)
         </para>
       </listitem>
 


Thread
svn commit - mysqldoc@docsrva: r4397 - trunk/refman-commonmcbrown8 Jan