db2 « Fetch « JPA Q&A





1. Fetching a large Blob to a byte[] throws NoClassDefFoundError with openJPA, DB2    stackoverflow.com

I have an Entity with the following field.

@Lob
@Column(name = "image", nullable = false)
private byte[] image;
Persisting my entity with a 5MB image worked without problems however when I try to ...

2. Unable to retrieve float value from db2    forum.hibernate.org

Hi, I have problem to retrieve float value from db2 database. The field datatype in db2 is real(because in db2, doesn't have float datatype). And in the bean, the field is declared as float. When I insert data into db2, it has no problem. But, when I try to retrieve data from db2, it hits error on the SQLGetFloatData. I have ...