Author: paul
Date: 2006-07-26 16:49:25 +0200 (Wed, 26 Jul 2006)
New Revision: 2832
Log:
r12735@frost: paul | 2006-07-26 09:45:04 -0500
Convert tabs to spaces.
Add markup.
Modified:
trunk/refman-common/news-connector-j.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:11840
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:12708
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:8441
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:11840
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:12735
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:8441
Modified: trunk/refman-common/news-connector-j.xml
===================================================================
--- trunk/refman-common/news-connector-j.xml 2006-07-26 14:30:53 UTC (rev 2831)
+++ trunk/refman-common/news-connector-j.xml 2006-07-26 14:49:25 UTC (rev 2832)
Changed blocks: 9, Lines Added: 67, Lines Deleted: 57; 7813 bytes
@@ -10,23 +10,25 @@
<section id="cj-news">
<title>MySQL Connector/J Change History</title>
-
+
<section id="cj-news-5-0-3">
- <title>Changes in MySQL Connector/J 5.0.3 (26 July 2006)</title>
-
- <itemizedlist>
-
- <listitem>
- <para>
- Fixed Statement.cancel() causes NullPointerException
- if underlying connection has been closed due to server failure. (fixes
Bug#20650)
- </para>
- </listitem>
- </itemizedlist>
-
+ <title>Changes in MySQL Connector/J 5.0.3 (26 July 2006)</title>
+
+ <itemizedlist>
+
+ <listitem>
+ <para>
+ Fixed <literal>Statement.cancel()</literal> causes
+ <literal>NullPointerException</literal> if underlying
+ connection has been closed due to server failure. (Bug #20650)
+ </para>
+ </listitem>
+
+ </itemizedlist>
+
</section>
-
+
<section id="cj-news-5-0-2">
<title>Changes in MySQL Connector/J 5.0.2-beta (11 July 2006)</title>
@@ -35,8 +37,9 @@
<listitem>
<para>
- Fixed can't use XAConnection for local transactions when no
- global transaction is in progress. (fixes Bug#17401)
+ Fixed can't use <literal>XAConnection</literal> for local
+ transactions when no global transaction is in progress. (Bug
+ #17401)
</para>
</listitem>
@@ -44,12 +47,12 @@
<para>
Fixed driver fails on non-ASCII platforms. The driver was
assuming that the platform character set would be a superset
- of MySQL's "latin1" when doing the handshake for
- authentication, and when reading error messages. We now use
- Cp1252 for all strings sent to the server during the handshake
- phase, and a hard-coded mapping of the "language" server
- variable to the character set that is used for error messages.
- (Fixes Bug#18086)
+ of MySQL's <literal>latin1</literal> when doing the handshake
+ for authentication, and when reading error messages. We now
+ use Cp1252 for all strings sent to the server during the
+ handshake phase, and a hard-coded mapping of the
+ <literal>language</literal> systtem variable to the character
+ set that is used for error messages. (Bug #18086)
</para>
</listitem>
@@ -57,15 +60,15 @@
<para>
Fixed <literal>ConnectionProperties</literal> (and thus some
subclasses) are not serializable, even though some J2EE
- containers expect them to be. (Fixes Bug#19169)
+ containers expect them to be. (Bug #19169)
</para>
</listitem>
<listitem>
<para>
Fixed <literal>MysqlValidConnectionChecker</literal> for JBoss
- doesn't work with <literal>MySQLXADataSources</literal>.
- (Fixes Bug#20242)
+ doesn't work with <literal>MySQLXADataSources</literal>. (Bug
+ #20242)
</para>
</listitem>
@@ -79,14 +82,17 @@
<listitem>
<para>
Added connection/datasource property
- "pinGlobalTxToPhysicalConnection" (defaults to "false"). When
- set to "true", when using <literal>XAConnections</literal>,
- the driver ensures that operations on a given XID are always
- routed to the same physical connection. This allows the
- XAConnection to support "XA START ... JOIN" after "XA END" has
- been called, and is also a workaround for transaction managers
- that don't maintain thread affinity for a global transaction
- (most either always maintain thread affinity, or have it as a
+ <literal>pinGlobalTxToPhysicalConnection</literal> (defaults
+ to <literal>false</literal>). When set to
+ <literal>true</literal>, when using
+ <literal>XAConnections</literal>, the driver ensures that
+ operations on a given XID are always routed to the same
+ physical connection. This allows the
+ <literal>XAConnection</literal> to support <literal>XA START
+ ... JOIN</literal> after <literal>XA END</literal> has been
+ called, and is also a workaround for transaction managers that
+ don't maintain thread affinity for a global transaction (most
+ either always maintain thread affinity, or have it as a
configuration option).
</para>
</listitem>
@@ -96,10 +102,10 @@
<literal>MysqlXaConnection.recover(int flags)</literal> now
allows combinations of
<literal>XAResource.TMSTARTRSCAN</literal> and
- <literal>TMENDRSCAN</literal>. To simulate the "scanning"
- nature of the interface, we return all prepared XIDs for
- <literal>TMSTARTRSCAN</literal>, and no new XIDs for calls
- with <literal>TMNOFLAGS</literal>, or
+ <literal>TMENDRSCAN</literal>. To simulate the
+ <quote>scanning</quote> nature of the interface, we return all
+ prepared XIDs for <literal>TMSTARTRSCAN</literal>, and no new
+ XIDs for calls with <literal>TMNOFLAGS</literal>, or
<literal>TMENDRSCAN</literal> when not in combination with
<literal>TMSTARTRSCAN</literal>. This change was made for API
compliance, as well as integration with IBM WebSphere's
@@ -115,7 +121,9 @@
<title>Changes in MySQL Connector/J 5.0.1-beta (Not Released)</title>
- <para>Not released due to a packaging error</para>
+ <para>
+ Not released due to a packaging error
+ </para>
</section>
@@ -342,8 +350,8 @@
<listitem>
<para>
- Connection fails to localhost when using timeout and IPv6
- is configured. (Fixes Bug#19726)
+ Connection fails to localhost when using timeout and IPv6 is
+ configured. (Fixes Bug#19726)
</para>
</listitem>
@@ -369,36 +377,38 @@
raised when re-using them. (Fixes Bug#20687)
</para>
</listitem>
-
+
<listitem>
<para>
- Fixed BUG#21062 - ResultSet.getSomeInteger() doesn't work for BIT(>1).
+ Fixed BUG#21062 - ResultSet.getSomeInteger() doesn't work for
+ BIT(>1).
</para>
</listitem>
-
+
<listitem>
<para>
- Fixed BUG#18880 - ResultSet.getFloatFromString() can't retrieve
- values near Float.MIN/MAX_VALUE.
- </para>
+ Fixed BUG#18880 - ResultSet.getFloatFromString() can't
+ retrieve values near Float.MIN/MAX_VALUE.
+ </para>
</listitem>
-
+
<listitem>
<para>
- Fixed BUG#20888 - escape of quotes in client-side prepared
- statements parsing not respected. Patch covers more than bug report,
- including NO_BACKSLASH_ESCAPES being set, and stacked quote characters
- forms of escaping (i.e. '' or "").
+ Fixed BUG#20888 - escape of quotes in client-side prepared
+ statements parsing not respected. Patch covers more than bug
+ report, including NO_BACKSLASH_ESCAPES being set, and stacked
+ quote characters forms of escaping (i.e. '' or "").
</para>
</listitem>
-
+
<listitem>
<para>
- Fixed BUG#19993 - ReplicationDriver does not always round-robin load
- balance depending on URL used for slaves list.
- </para>
- </listitem>
-
+ Fixed BUG#19993 - ReplicationDriver does not always
+ round-robin load balance depending on URL used for slaves
+ list.
+ </para>
+ </listitem>
+
</itemizedlist>
</section>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r2832 - in trunk: . refman-common | paul | 26 Jul |