List:Internals« Previous MessageNext Message »
From:mmatthews Date:August 31 2005 7:41pm
Subject:Connector/J commit: r4178 - branches/branch_3_1/connector-j/src/com/mysql/jdbc
View as plain text  
Modified:
   branches/branch_3_1/connector-j/src/com/mysql/jdbc/Connection.java
Log:
assignment fixup in prepareCall().

Modified: branches/branch_3_1/connector-j/src/com/mysql/jdbc/Connection.java
===================================================================
--- branches/branch_3_1/connector-j/src/com/mysql/jdbc/Connection.java	2005-08-31 00:04:54 UTC (rev 4177)
+++ branches/branch_3_1/connector-j/src/com/mysql/jdbc/Connection.java	2005-08-31 19:41:34 UTC (rev 4178)
@@ -4142,7 +4142,7 @@
 				if (cachedParamInfo != null) {
 					cStmt = new CallableStatement(this, cachedParamInfo);
 				} else {
-					cStmt = cStmt = parseCallableStatement(sql);
+					cStmt = parseCallableStatement(sql);
 
 					cachedParamInfo = cStmt.paramInfo;
 

Thread
Connector/J commit: r4178 - branches/branch_3_1/connector-j/src/com/mysql/jdbcmmatthews31 Aug