Saving images or pdfs in db4o - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T20:22:32Zhttp://stackoverflow.com/feeds/question/964053http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o2Saving images or pdfs in db4oFred2009-06-08T09:26:10Z2009-06-08T09:29:31Z
<p>I know it is not a good thing to save files in a relational databas.
But how about in a objectdatabase?
Is it still a bad idea or are they more adapted for this kind of operations?</p>
http://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o/964063#9640631Answer by Davy Landman for Saving images or pdfs in db4oDavy Landman2009-06-08T09:29:31Z2009-06-08T09:29:31Z<p>I've had some experience storing the images in a special blob field in db4o. It works reasonably well, looking at the db4o forums you could learn more about experiences. Some links:</p>
<ul>
<li><a href="http://developer.db4o.com/forums/thread/48512.aspx" rel="nofollow">http://developer.db4o.com/forums/thread/48512.aspx</a></li>
<li><a href="http://developer.db4o.com/tags/Blob/default.aspx" rel="nofollow">http://developer.db4o.com/tags/Blob/default.aspx</a></li>
<li><a href="http://developer.db4o.com/forums/thread/30107.aspx" rel="nofollow">http://developer.db4o.com/forums/thread/30107.aspx</a></li>
</ul>
<p>The blobs are stored in external files outside of the db4o yap file.</p>