--- 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();