hot questions tagged odbms - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T08:38:12Zhttp://stackoverflow.com/feeds/tag?tagnames=odbms&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database3How to design many-to-many relationships in an object database?paul2009-07-01T13:36:02Z2009-09-02T19:40:17Z
<p>I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.</p>
<p>Consider the following objects: Book, Category.</p>
<p>A Book can be in 0-n categories and a Category can be applied to 0-m Books.</p>
<p>My first thought is to have a joining object such as BookCatecory but after a bit of Googling I see that this is not appropriate for 'Real OO'.</p>
<p>So another approach (recommended by many) is to have a list in both objects: Book.categories and Category.books. One side handles the relationship: Book.addCategory adds Category to Book.categories and Book to Category.books. How to handle commits and rollbacks when 2 objects are been altered within one method call?</p>
<p>What are your thoughts? The second approach has obvious advantages but, for me at least, the first 'feels' right (better normed). </p>
http://stackoverflow.com/questions/394424/best-open-source-odbms-for-java6best open source ODBMS for javaSergey2008-12-26T23:00:52Z2009-01-05T09:11:18Z
<p>Could you advise the best open source ODMBS (object oriented database management system) for Java application?</p>
<p>I understand that usually there is no one definite answer for such questions. So the main points I look for are:</p>
<ol>
<li>good documentation/ support / community</li>
<li>reliability</li>
<li>performance</li>
</ol>
<p>UPDATE: </p>
<p>I see db4o has a long history, the biggest java ODBMS community and dual-licensing. I consider this to be a good sign of good documentation/ support/ maturity.</p>
<p>Prevayler looks really awesome but only if you are ok with storing (caching) all your DB in the memory. Which can be not suitable for big DBs with a lot of rarely queried data.</p>