I am getting an exception as
com.microsoft.sqlserver.jdbc.SQLServerException: String or binary data would be truncated.
The exception is thrown at the following line:
PrepareStmt.setBinaryStream(1, new ByteArrayInputStream(data), data.length);
updatePrepareStmt.executeUpdate();
I am using MS-SQL db. Can anyone help me solve this problem?
The datatype of the column in which I am trying to insert data is varbinary and the length of the data is also not large. I am just inserting "test".
UPDATE
Now I have increased the size of datatype varbinary. Made it to 1024, but I get new Exception now :-
com.microsoft.sqlserver.jdbc.SQLServerException:The conversion from varbinary to BLOB is unsupported
Can anyone comment on this Exception?
com.microsoft.sqlserver.jdbc.SQLServerException:The conversion from varbinary to BLOB is unsupported. With a previous version of Oracle, I have had to run anInsertquery in my table (which create the BLOB first), and then I was able to write in it after aSelect... – Destroyica Sep 30 '11 at 13:04