[jboss-user] [EJB 3.0] - Re: Problem with @Lob annotation and MySql

2006-11-23 Thread tcomtcom
I solved the problem by simply using @Column wtih columnDefinition=LONGBLOB. For your information, I found out that it is not the Blob type which limits the data size. If the type of the table is MyISAM, each line cannot exceed 64KB. Bye View the original post :

[jboss-user] [EJB 3.0] - Problem with @Lob annotation and MySql

2006-11-22 Thread tcomtcom
Hi, I want to persit a photo of a person in my database. In order to do that, I'am using the code below: | @Entity | @Table(name=PERSONNE) | @Inheritance(strategy=InheritanceType.JOINED) | public class Personne implements Serializable{ | | private ImageIcon photo; | ...