List:Commits« Previous MessageNext Message »
From:mmatthews Date:October 2 2007 9:46pm
Subject:Connector/J commit: r6596 - in trunk: . connector-j connector-j/src/com/mysql/jdbc/jdbc2/optional
View as plain text  
Modified:
   trunk/
   trunk/connector-j/CHANGES
   trunk/connector-j/src/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.java
Log:
Merged revisions 6594 via svnmerge from 
svn+ssh://mmatthews@stripped/connectors-svnroot/connector-j/branches/branch_5_0

.......
  r6594 | mmatthews | 2007-10-01 10:14:53 -0500 (Mon, 01 Oct 2007) | 1 line
  
  XAConnections now start in auto-commit mode (as per JDBC-4.0 specification
clarification).
.......



Property changes on: trunk
___________________________________________________________________
Name: svnmerge-integrated
   - /branches/branch_5_0:1-6572 /branches/branch_5_1:1-6566,6576-6577,6584,6587-6592
   + /branches/branch_5_0:1-6572,6594 /branches/branch_5_1:1-6566,6576-6577,6584

Modified: trunk/connector-j/CHANGES
===================================================================
--- trunk/connector-j/CHANGES	2007-10-02 19:36:55 UTC (rev 6595)
+++ trunk/connector-j/CHANGES	2007-10-02 19:46:56 UTC (rev 6596)
@@ -268,6 +268,9 @@
     - Fixed Bug#30892 setObject(int, Object, int, int) delegate in
       PreparedStatmentWrapper delegates to wrong method.
       
+    - XAConnections now start in auto-commit mode (as per JDBC-4.0 specification
+      clarification).
+      
 07-19-07 - Version 5.0.7
 
     - Setting the configuration parameter "useCursorFetch" to "true" for

Modified: trunk/connector-j/src/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.java
===================================================================
--- trunk/connector-j/src/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.java	2007-10-02
19:36:55 UTC (rev 6595)
+++ trunk/connector-j/src/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.java	2007-10-02
19:46:56 UTC (rev 6596)
@@ -127,7 +127,6 @@
 		
 		if (this.isForXa) {
 			setInGlobalTx(false);
-			setAutoCommit(false);
 		}
 	}
 

Thread
Connector/J commit: r6596 - in trunk: . connector-j connector-j/src/com/mysql/jdbc/jdbc2/optionalmmatthews2 Oct