Hi,
I wantto store an uploaded image in the DB as a BLOB.
The image data comes as org.apache.struts.upload.FormFile.
In my presistance class I have a property of type
java.sql.Blob mappd to blob in DB.
So, what do I need to do in order to store the image?
I can get byte array from the form file. But which Blob to create in order to pass to my presistance class propery?
MySQL driver has implementation of Blob I don't see any public constructor.
Am I missing something?
Please help.
Thanks in advance,
Igor
|