Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to store MediumBlob data in MySQL using java. But I have no success to retrieve the data.

To store I'm using:

PreparedStatement = stmt conn.prepareStatement("UPDATE INTO table VALUE(?)");
ByteArrayInputStream bais = new ByteArrayInputStream(data);
stmt.setBinaryStream(position, bais, data.length);

Is there correcty?

share|improve this question
Does it get into the database correctly? When you say you have no success retrieving the data what do you mean? – jzd Feb 24 '11 at 14:38
have you tried setBlob() instead of setbinaryStream() ? – Bala R Feb 24 '11 at 14:45
Using setBlob() a exception occurs when I call stmt.update() – Victor Feb 24 '11 at 14:55
@jzd some data is returned by the databse, but is not the data that I have on setBinaryData. Is something different... :( – Victor Feb 24 '11 at 14:55
@Victor, what is the exception you are getting with setBlob()? – jzd Feb 24 '11 at 14:57
show 1 more comment

1 Answer

up vote 1 down vote accepted

I fix it!!!!

The problem was when I was retrieving the data. I was calling:

ResultSet.getClob

But I should call:

ResultSet.getBinaryStream

I have used setBinaryStream to input data!

This was confusing because I have a Clob field, and I was expecting retrieving a Clob field in Java code!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.