Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:16:01Z http://stackoverflow.com/feeds/question/173040 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173048#173048 1 Answer by Jon Limjap for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Jon Limjap 2008-10-06T02:23:51Z 2008-10-06T02:23:51Z <p>I'd only recommend going for OODBMSs if your application design is really, really heavily object oriented, and the complexity presents a need for it. A photo-sharing site doesn't sound like it's heavy on the OO side, so I don't see the point of going for db4o.</p> <p>However if you really just want to learn the ins and outs of using an OODBMS out of a pet project, it's fine to use one.</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173071#173071 5 Answer by MusiGenesis for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? MusiGenesis 2008-10-06T02:42:41Z 2008-10-06T02:42:41Z <p>An OODBMS is better if you only need to access your data through your objects. If your solution requires additional pathways to your data (e.g. ad-hoc queries, reporting, other applications that need data access but can't make use of your objects), then a traditional RDBMS system is better.</p> <p>Note: OODBMSes have made a lot of improvement in this area.</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173099#173099 1 Answer by MusiGenesis for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? MusiGenesis 2008-10-06T03:00:30Z 2008-10-06T03:00:30Z <p>Another good reason is relative longevity. db40 is an excellent product for what it does, but its user base is small and it isn't likely to outlive something like SQL Server.</p> <p>Of course, I also used to say there was no way Java was going to survive.</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173104#173104 4 Answer by JPLemme for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? JPLemme 2008-10-06T03:06:55Z 2008-12-27T16:13:03Z <p>I don't know how big your plans are, but the availability of experienced and skilled people to hire (or just to lend a hand) would factor into my decision, as well as just a generally large body of knowledge regarding all of the ins and outs of the DB.</p> <p>Oracle or MySQL have their flaws, but odds are if you have a problem 100 other people have had the same problem and can tell you how to solve it.</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173106#173106 0 Answer by Cade Roux for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Cade Roux 2008-10-06T03:13:50Z 2008-10-06T03:13:50Z <p>Size of data (If I'm dealing with millions and millions of rows, I'm sticking with what I know)</p> <p>Reporting (Typically difficult enough in normalized databases, worse in OO databases)</p> <p>Availability of expertise/experience (RDBMS clearly have more adherents)</p> <p>Large amounts of ETL (Most people import and export in flat files, unless you're getting/sending XML, you're talking plain old tables)</p> <p>None of these sound like obstacles for your project</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173110#173110 3 Answer by Michael Easter for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Michael Easter 2008-10-06T03:17:00Z 2008-10-06T03:17:00Z <p>This is a bit of a stretch, but to paraphrase a Joel post, plan for success. What if your app becomes really popular?</p> <p>For example, what if you are hosting your app on your own machine, but decide to go to a formal hosting site, or even a server farm. What are the chances they will support an OODB versus MySQL? </p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173170#173170 4 Answer by Keith Patton for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Keith Patton 2008-10-06T04:04:38Z 2008-10-06T04:04:38Z <p>I would say the fact that if you are considering something like db4o that they don't appear to have enterprise examples of powering websites, and are mostly in use for embedded applications.</p> <p>See my other post on this. (<a href="http://www.youtube.com/watch?v=N8XDscWleKw" rel="nofollow">http://www.youtube.com/watch?v=N8XDscWleKw</a>)</p> <p>Nothing technically in the way here, just adoption it seems. However, for speed of development, maintainence and design flexibility, OODBs are pretty unbeatable.</p> <p>heavy reporting etc. can be done by synching with a relational back end if required which i know db4o supports</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173195#173195 0 Answer by Ron Savage for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Ron Savage 2008-10-06T04:23:45Z 2008-10-06T04:23:45Z <p>My personal opinion, where there's data ... there's reporting.</p> <p>No OODBs is going to give your data the appropriate storage model to be available to your reporting applications.</p> <p>Ron</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/173196#173196 0 Answer by arthurguru for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? arthurguru 2008-10-06T04:23:55Z 2008-10-06T04:23:55Z <p>Need for speed when all you got is a pedal bike. Scenarios include data capture (e.g. logging) where after the event the captured data is often processed at a later stage and probably broken up into its object constituents anyway.</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/182041#182041 2 Answer by German for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? German 2008-10-08T10:22:42Z 2008-10-08T10:22:42Z <p>For reporting with db4o please see:</p> <p><a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation_Strategies/Reporting/" rel="nofollow">http://developer.db4o.com/Resources/view.aspx/Reference/Implementation_Strategies/Reporting/</a></p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/196954#196954 0 Answer by German for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? German 2008-10-13T07:50:26Z 2008-10-13T07:50:26Z <p>Maybe you guys also want to check this article:</p> <p><a href="http://microsoft.apress.com/asptodayarchive/74063/using-an-object-oriented-d" rel="nofollow">http://microsoft.apress.com/asptodayarchive/74063/using-an-object-oriented-d</a></p> <p>"Using an OODB in a Website" by Jim Paterson</p> <p>Best!</p> http://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac/270959#270959 0 Answer by Stephan Eggermont for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website? Stephan Eggermont 2008-11-07T01:17:13Z 2008-11-07T01:17:13Z <p>For a complex application with modest data needs, you can't beat GLASS (Gemstone, Seaside and Smalltalk). Reporting is definitely something you want to do OO in Smalltalk.</p>