Questions tagged [object-oriented-database]

ODBMS: a database management system that represents information as objects, like in object-oriented programming

233 questions
12
votes
4 answers

Real World Experience of db4o and/or Eloquera Database

I am evaluating two object databases, db4o (http://www.db4o.com) and Eloquera Database (http://eloquera.com) for a coming project. I have to choose one. My basic requirement is scalability, multi user support and easy type evolution for…
Ying
  • 516
  • 4
  • 16
12
votes
2 answers

Object oriented vs. object relational database difference

I have been reading about database models and still do not understand what are the fundamental differences between object oriented and object relational models. I learned so far that object relational database is a relational database also which…
ps-aux
  • 9,706
  • 17
  • 67
  • 117
12
votes
3 answers

PHP Domain Model

I have been programming in PHP for several years and have in the past adopted methods of my own to handle data within my applications. I have built my own MVC in the past and have a reasonable understanding of OOP within php but I know my…
12
votes
2 answers

PHP - Extending Class

I've done lots and lots of code in PHP that is object-oriented, but up until now, all of my classes have been, "singular", I suppose you can call it. I am in the process of changing several classes (that have 5 or so identical methods) to extend…
TheLettuceMaster
  • 14,856
  • 42
  • 142
  • 248
11
votes
8 answers

Web Development - Object db vs Relational db

Whats the cons and pros of using a object database or relational database for regular web development which involves a lot of CRUD? UPDATE: I reopened the bounty reward in order to give Neville it.
ebb
  • 8,919
  • 15
  • 62
  • 119
11
votes
4 answers

Need to store LOTS of data on Android device, thinking of going OODB

I'm currently working on a project that's based on Android. Without getting into many details, the software will run on a custom built device. The hardware will never change and will always be the same. That's a definite plus :) With that said, this…
Jason L.
  • 2,434
  • 1
  • 20
  • 40
11
votes
7 answers

Object database for .NET

Are there any object databases for .NET or with bindings for .NET?
Magnus Lindhe
  • 6,678
  • 5
  • 43
  • 58
10
votes
7 answers

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 is why isn't this used more frequently? Is it…
Kevin Pang
  • 39,694
  • 37
  • 117
  • 169
10
votes
11 answers

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 object-oriented database (e.g. db4o)?
Jonathan
  • 29,612
  • 37
  • 126
  • 201
9
votes
1 answer

What is the difference between object-oriented and document databases?

What is the difference between object-oriented and document databases? I didn't use object-oriented databases, but when I use document database (RavenDb) I store and read usual object-oriented classes without problems.
SiberianGuy
  • 22,118
  • 44
  • 135
  • 253
8
votes
3 answers

Many to many object to object relation in C#

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 and championship. It is a many to many relation as…
Kamil Zadora
  • 2,307
  • 4
  • 33
  • 43
8
votes
2 answers

Handling data maintenance in Object Databases like db4o

One thing I have continually found very confusing about using an object database like db4o is how you are supposed to handle complex migrations that would normally be handled by SQL/PL-SQL. For example imagine you had a table in a relational…
benstpierre
  • 30,487
  • 46
  • 163
  • 272
7
votes
1 answer

Eloquera object database

I saw Eloquera db and was quite impressed with it. Currently I'm thinking developing my next project on Eloquera and not Sql Server. So I have several questions with it. How does Eloquera performs in enterprise and heavy loads? How does it compare…
Davita
  • 8,246
  • 12
  • 56
  • 113
6
votes
2 answers

Questions about GemStone/S

I'm having a hard time understanding the big picture of GemStone for Smalltalk. I am aware of GLASS as an application server using Linux, Seaside and Apache. But I want to know if it is an usable environment for non-Seaside applications. I'm also…
user869097
  • 1,342
  • 8
  • 14
5
votes
2 answers

Method for indexing an object database

I'm using an object database (ZODB) in order to store complex relationships between many objects but am running into performance issues. As a result I started to construct indexes in order to speed up object retrieval and insertion. Here is my…
Evrim
  • 55
  • 2
1
2
3
15 16