--- src/com/mysql/jdbc/CallableStatement.java.orig 2009-11-28 20:29:56.000000000 +0100
+++ src/com/mysql/jdbc/CallableStatement.java 2009-11-28 23:57:51.000000000 +0100
import java.sql.ParameterMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
return (super.checkReadOnlySafeStatement() || this.checkReadOnlyProcedure());
+ public void setNClob(String parameterName, Reader reader)
+ throw SQLError.notImplemented();
+ public Reader getCharacterStream(String parameterName) throws SQLException {
+ throw SQLError.notImplemented();
+ public Reader getCharacterStream(int parameterIndex) throws SQLException {
+ throw SQLError.notImplemented();
+ public String getNString(String parameterName) throws SQLException {
+ throw SQLError.notImplemented();
+ public String getNString(int parameterIndex) throws SQLException {
+ throw SQLError.notImplemented();
+ public Reader getNCharacterStream(String parameterName)
+ throw SQLError.notImplemented();
+ public Reader getNCharacterStream(int parameterIndex) throws SQLException {
+ throw SQLError.notImplemented();
+ public SQLXML getSQLXML(String parameterName) throws SQLException {
+ throw SQLError.notImplemented();
+ public SQLXML getSQLXML(int parameterIndex) throws SQLException {
+ throw SQLError.notImplemented();
+ public void setSQLXML(String parameterName, SQLXML xmlObject)
+ throw SQLError.notImplemented();
+ public NClob getNClob(String parameterName) throws SQLException {
+ throw SQLError.notImplemented();
+ public NClob getNClob(int parameterIndex) throws SQLException {
+ throw SQLError.notImplemented();
+ public void setNClob(String parameterName, Reader reader, long length)
+ throw SQLError.notImplemented();
+ public void setNClob(String parameterName, NClob value)
+ throw SQLError.notImplemented();
+ public void setNString(String parameterName, String value)
+ throw SQLError.notImplemented();
+ public void setRowId(String parameterName, RowId x)
+ throw SQLError.notImplemented();