hot questions tagged db4o+oodbms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:34:27Z http://stackoverflow.com/feeds/tag?tagnames=db4o%2boodbms&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database 3 How to design many-to-many relationships in an object database? paul 2009-07-01T13:36:02Z 2009-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/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac 8 Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? jonathanconway 2008-10-06T02:18:36Z 2008-11-07T01:17:13Z <p>Say you're coding some kind of web application. Something where people can contribute content, e.g. a simple photo-sharing site.</p> <p>How many good reasons can you think of to <em>not</em> go with an object-oriented database (e.g. db4o)?</p> http://stackoverflow.com/questions/300987/how-do-you-do-data-management-tasks-in-a-db4o-object-database 2 How do you do data management tasks in a Db4o Object Database? JC Grubbs 2008-11-19T04:28:00Z 2009-02-06T09:19:05Z <p>I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data management tasks associated with development. Periodically I want to wipe out all of a certain Type in the DB, how do I do this without actually writing a method in code to do it and then running my app? Also, how do I address "schema" changes. If I change the definition of a particular class, does Db4o create a new "table" for it, or does it recognize it as the same Type with just a different set of members?</p> <p>Btw...I'm in .NET 3.5</p>