In my database, I've got some columns mapped with a BLOB or CLOB type.
When mapping such a field, hibernate recommends :
@Lob
public String getBlobField() { ... }
Why do we need the @Lob annotation ?
In my database, I've got some columns mapped with a BLOB or CLOB type.
When mapping such a field, hibernate recommends :
@Lob
public String getBlobField() { ... }
Why do we need the @Lob annotation ?