Save images as raw-binary (BLOB) data

TimTDP

Registered User.
Local time
Today, 23:48
Joined
Oct 24, 2008
Messages
213
I need to insert graphic files into my database.
Currently I save the URL of the file in a text field. This is to prevent bloating the size of the database

I have been lead to believe that saving the images as raw-binary (BLOB) data avoids bloat.

Is this good practice?
How do I implement this?
How would I use the image in a report?
 
what's wrong with what you are doing now ?
 
Because I believe that using raw-binary data the file is embedded into the database without the overhead. This is the ideal solution for portable databases, e.g databases on a laptop
 
The one consideration with embedding images is that every image has to 'read over' when it is not being used whilst referential use of images only renders the images when they are actually required.

Yes, porpagating databses is a pain with linked images as the images have to be transferred as well. If there are just a few images then perhaps embedding is OK. A large quantity of images don't. In Access 2007 you can specify to keep in their native format greatly reduces the footprint of the images.

Simon
 

Users who are viewing this thread

Back
Top Bottom