List:Commits« Previous MessageNext Message »
From:tikeda Date:February 25 2006 2:10am
Subject:Connector/J commit: r4990 - branches/branch_5_1/connector-j/src/com/mysql/jdbc
View as plain text  
Modified:
   branches/branch_5_1/connector-j/src/com/mysql/jdbc/CallableStatement.java
Log:
removed CallableStatement.setNClob()/setNCharacterStream() that have 1st int parameter

Modified: branches/branch_5_1/connector-j/src/com/mysql/jdbc/CallableStatement.java
===================================================================
--- branches/branch_5_1/connector-j/src/com/mysql/jdbc/CallableStatement.java	2006-02-25 01:52:22 UTC (rev 4989)
+++ branches/branch_5_1/connector-j/src/com/mysql/jdbc/CallableStatement.java	2006-02-25 02:10:44 UTC (rev 4990)
@@ -1898,29 +1898,27 @@
         setLong(getNamedParamIndex(parameterName, false), x);
 	}
 
-	public void setNCharacterStream(int parameterIndex, Reader value,
-			long length) throws SQLException {
-		throw new ToBeImplementedException();
-	}
-
+    /**
+     * @see java.sql.CallableStatement#setNCharacterStream(java.lang.String,
+     *      java.io.Reader, long)
+     */
 	public void setNCharacterStream(String parameterName, Reader value,
 			long length) throws SQLException {
 		throw new ToBeImplementedException();
 	}
 
-	public void setNClob(int parameterIndex, NClob value) throws SQLException {
-		throw new ToBeImplementedException();
-	}
-
-	public void setNClob(int parameterIndex, Reader reader, long length)
-			throws SQLException {
-		throw new ToBeImplementedException();
-	}
-
+    /**
+     * @see java.sql.CallableStatement#setNClob(java.lang.String,
+     *      java.sql.NClob)
+     */
 	public void setNClob(String parameterName, NClob value) throws SQLException {
 		throw new ToBeImplementedException();
 	}
 
+    /**
+     * @see java.sql.CallableStatement#setNClob(java.lang.String,
+     *      java.io.Reader, long)
+     */
 	public void setNClob(String parameterName, Reader reader, long length)
 			throws SQLException {
 		throw new ToBeImplementedException();

Thread
Connector/J commit: r4990 - branches/branch_5_1/connector-j/src/com/mysql/jdbctikeda25 Feb