Saving images or pdfs in db4o - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T20:22:32Z http://stackoverflow.com/feeds/question/964053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o 2 Saving images or pdfs in db4o Fred 2009-06-08T09:26:10Z 2009-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#964063 1 Answer by Davy Landman for Saving images or pdfs in db4o Davy Landman 2009-06-08T09:29:31Z 2009-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>