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.com2009-12-09T04:16:01Zhttp://stackoverflow.com/feeds/question/173040http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/173040/can-anyone-think-of-some-good-reasons-not-to-use-an-object-oriented-dbms-to-bac8Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?jonathanconway2008-10-06T02:18:36Z2008-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#1730481Answer by Jon Limjap for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Jon Limjap2008-10-06T02:23:51Z2008-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#1730715Answer by MusiGenesis for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?MusiGenesis2008-10-06T02:42:41Z2008-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#1730991Answer by MusiGenesis for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?MusiGenesis2008-10-06T03:00:30Z2008-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#1731044Answer by JPLemme for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?JPLemme2008-10-06T03:06:55Z2008-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#1731060Answer by Cade Roux for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Cade Roux2008-10-06T03:13:50Z2008-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#1731103Answer by Michael Easter for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Michael Easter2008-10-06T03:17:00Z2008-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#1731704Answer by Keith Patton for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Keith Patton2008-10-06T04:04:38Z2008-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#1731950Answer by Ron Savage for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Ron Savage2008-10-06T04:23:45Z2008-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#1731960Answer by arthurguru for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?arthurguru2008-10-06T04:23:55Z2008-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#1820412Answer by German for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?German2008-10-08T10:22:42Z2008-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#1969540Answer by German for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?German2008-10-13T07:50:26Z2008-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#2709590Answer by Stephan Eggermont for Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?Stephan Eggermont2008-11-07T01:17:13Z2008-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>