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

The table columns have the data type BLOB and CLOB.

What are the corresponding Java data types?

I am using MySQL database.

share|improve this question

1 Answer

up vote 0 down vote accepted

BLOB and CLOB are bytes strings stored in database.

In MySQL, you can have an entity with a field of byte array representing your BLOB / CLOB.

E.g.

class MyBlob implements Serializable {

  byte[] myBlobField;

  //Setter
  public void setMyBlobField(byte[] myBlobField) {
    this.myBlobField = myBlobField;
  }

  //Getter
  public byte[] getMyBlobField() {
     return myBlobField;
  }
}

On JDBC, create a PreparedStatement and do something of this effect:

 MyBlob blob = ....;
 PreparedStatement ps = ....;
 ps.setByte(1, blob.getMyBlobField());

 ps.execute();
 //Handle Exceptions...close...etc.
share|improve this answer
Thanks For the answer:) – Dj. Mar 4 '10 at 4:18
You're welcome.. :) – Buhake Sindi Mar 9 '10 at 12:39

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.