Tagged Questions

2
votes
6answers
231 views

Why aren’t OODBMS as widespread as RDBMS?

Why are relation databases more common than object-oriented databases? If the Object Oriented Programming paradigm is so widespread, shouldn't we see lots of OODBMS? Wouldn't they perform better than …
1
vote
5answers
134 views

Was anyone thinking of ‘CLR Server’ instead ‘SQL Server’?

I was thinking many times, now days that we have Linq and other CLR language-specific built-in search, sort and other capabilities over tables, collections and object, why not have the 'SQL Server' or …
3
votes
6answers
328 views

How to design many-to-many relationships in an object database?

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. Consider the following objects: Book, Category. A Book can be in 0-n …
0
votes
1answer
101 views

Could you use Lucene as an OODB?

Given that Lucene is a robust document based search engine could it be used as an Object Database for simple applications (E.G., CMS style applications) and if so what do you see the benefits and …
1
vote
3answers
143 views

Relational & Object-Oriented Database which one is better, will be suppressed?

I wonder if RDBMS or OODBMS will be suppressed in near future? Today I read quite a few articles about differences in both of them and most of the articles seem to favor OODBMS. Does that mean that …
2
votes
2answers
147 views

Main Memory DB vs Object DB

I'm currently trying to pick a database vendor. I'm just seeking some personal opinions from fellow database developers out there. My question is especially targeted towards people who: 1) have …
3
votes
3answers
352 views

Many to many object to object relation in C#

Hi, I am working on a small educational project to exercise perst.net. We have a tiny design problem, that is how to best resolve the relation between two classes of objects, that is the participant …
8
votes
2answers
735 views

Object Oriented Database Vs object Relational Database

Hi, I wonder how Object Oriented data modeling is different from Object Relational data modeling? Is it something like the pluses of both object oriented and relational data modeling were clubbed …
1
vote
2answers
263 views

Migrating from ‘native’ OODBMS to ORM (Entity Framework / SQL Server)

A while ago we started developing a new project which internally has about 25-30 different classes/types/models that are heavily related to each other either via 1:n, n:m or n:1 relationships. Back …
0
votes
1answer
74 views

Does Linq and projects like i4o make object oriented DBs a viable alternateive to relational DBs?

Given Linq and technologies like i4o is there any real reason why an object oriented database management system won't be a viable alternative to a relational database management system for new …
0
votes
4answers
173 views

Should I use OODB for small applications?

We looking to build an application to maintain meeting minutes and similar stuff using .net. I was thinking of using db4o or some OODB for this. Is it a bad idea? I am looking to simply create a …
2
votes
1answer
183 views

How do you do data management tasks in a Db4o Object Database?

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 …
8
votes
12answers
585 views

Can anyone think of some good reasons *not* to use an Object-Oriented DBMS to back a website?

Say you're coding some kind of web application. Something where people can contribute content, e.g. a simple photo-sharing site. How many good reasons can you think of to not go with an …
15
votes
11answers
899 views

Why have object oriented databases not been succesful (yet) ?

That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.
6
votes
7answers
567 views

What are the pros and cons of object databases?

There is a lot of information out there on object-relational mappers and how to best avoid impedance mismatch, all of which seem to be moot points if one were to use an object database. My question …