java - What is org.springframework.orm.hibernate3.support.BlobByteArrayType good for? -
What's good for this?
Do not map as byte []
as the hibernate to the original type ""?
What are the differences?
BlobByteArrayType lets you map arbitrary bytes. Array in a Blob field in the database binary type hibernate allows you to map a byte array to an area. In
, Blob is like rain, but can grow as much as you want.
Comments
Post a Comment