Mysql
 sql >> Database >  >> RDS >> Mysql

Archivia l'array di byte in MySQL con Hibernate

Se vuoi convertire il tuo byte[] in sql digitare Blob , puoi fare quanto segue:

@Lob(type = LobType.BLOB)

o

@Type(type = "org.hibernate.type.BlobType")
@Lob

Spero che aiuti