Tagged Questions
An object database (also object-oriented database management system) is a database management system in which information is represented in the form of objects as used in object-oriented programming
19
votes
13answers
1k views
Why have object oriented databases not been successful (yet)?
That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.
11
votes
2answers
3k views
Object Oriented Database Vs object Relational Database
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 to ...
10
votes
4answers
464 views
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 ...
9
votes
6answers
2k 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 ...
9
votes
12answers
890 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 ...
8
votes
3answers
1k views
Recommend a good db4o viewer
I'm playing around with db4o, and I have the Object Manager viewer thingy for Visual Studio. It seems okay, but not exactly on par with tools like HeidiSQL/SQL Studio/etc., not to mention that it ...
7
votes
3answers
2k views
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 ...
7
votes
6answers
1k 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 ...
7
votes
7answers
1k 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 ...
5
votes
3answers
1k views
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 ...
4
votes
6answers
1k views
is ObjectDB production ready?
In this benchmark ObjectDB is far the fastest DB:
http://www.jpab.org/All/All/All.html
But I cannot see any other benchmark results from ObjectDB.
Is anyone using ObjectDB? Is it production ready? ...
3
votes
4answers
60 views
Database or other method of storing and dynamically accessing HUGE binary objects
I have some large (200 GB is normal) flat files of data that I would like to store in some kind of database so that it can be accessed quickly and in the intuitive way that the data is logically ...
3
votes
2answers
96 views
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 ...
3
votes
1answer
150 views
What's the best OO-DBMS to use in Production for Java?
I was thinking to start researching about OO-DBMS performance for Java applications to use in production scenarios. Did you have any successful experience using an OO-DBMS for Java rather than a ...
3
votes
5answers
1k views
Is there a pure object database for PHP?
I'm interested in knowing if there is a pure object oriented database for PHP. Something similar to zodb for Python.
I'm not really looking for an object-relational mapper. So no active record ...
2
votes
2answers
62 views
Db4o - refresh ALL new objects in persistent session
is it possible in Db4o to load new objects into persistent IObjectContainer?
I have a desktop application which opens one connection (IObjectContainer) when started. if I query all objects with:
...
2
votes
0answers
359 views
Embedded nosql open source java database
I'm developing an open source product and need an embedded dbms.
Can you recommend an embedded open source database that ...
Can handle objects over 10 GB each
Has a license friendly to ...
2
votes
5answers
512 views
OODBMS - RDBMS difference and which one is suitable for a factory management system
I searched a bit for the differences between OODBMS and RDBMS. I pretty much know what they are. However, how I will decide which one is better for which applications. Can anyone kindly help me ...
2
votes
1answer
182 views
Why aren't object oriented database management systems more popular? [closed]
I mean, with EJB, LINQ2SQL, EF etc we're trying to (at least in my perspective) map the rdb in a way so we can use the entities as objects. How come there hasn't been a surge of OODBMS since they ...
2
votes
1answer
561 views
JDO architecture: One to many relationship and cascading deleting
I’m new to object oriented database designs and I’m trying to understand how I should be structuring my classes in JDO for google app engine, particularly one to many relationships.
Let’s say I’m ...
2
votes
2answers
613 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 ...
2
votes
2answers
647 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 ...
2
votes
4answers
545 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
269 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 ...
1
vote
1answer
56 views
Class design for a media manager application usig Db4o for efficient querying
I am a novice programmer and need some help with class design for my application.
We are working on the design of a media manager desktop application (using .NET Framework 4.0) . The application ...
1
vote
2answers
212 views
Retrieve an object in one DB4O session, store in another ('disconnected scenario')
I am trying to figure out how to keep an object useable between client sessions in DB4O. From what I understand, once a client session is closed, the object no longer resides in any cache and despite ...
1
vote
2answers
176 views
Object-oriented / Relational-Hybrid Database?
I've been using relational databases + object relational mappers for object persistence.
I don't think this is a truly adequate solution for persistence, because it adds unnecessary overhead. It also ...
1
vote
2answers
128 views
What sort of Database system should I use?
I'm planning to write an address book that stored contact information.
Each contact could have an unlimited number of fields.
Mostly strings and integers.
But perhaps references to other Objects.
...
1
vote
1answer
198 views
OODBMS postgreSQL array Fields real Use?
I am new to PostgreSQL, mainly used MySQL before and SQLServer(for Clients Pressure; donno much), I've gone through several OODBMS Introductories over some Google Search. Most of them mainly focuses ...
1
vote
2answers
176 views
.NET project: unified wrapper for object databases
I am considering doing a project which would provide unified API and tools (import/export, etc.) for object databases (e.g. Caché, Objectivity) for .NET.
It would provide:
schema generation from ...
1
vote
5answers
189 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 ...
1
vote
1answer
267 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
293 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 ...
0
votes
1answer
18 views
Sequentially Accessed Records in an Hierarchical (Object) DB
I am creating an app that doesn't do any searching (or many other random-access activities). It's built on an object DB (ZODB if you're interested) and will store many instances of a identical type. ...
0
votes
1answer
23 views
db4o class model transient field
I am using db4o as DBMS and I have a question:
Is there any way to specify that I do not want to store a field from the model class in the database?
Something similar to @Transient annotation when ...
0
votes
0answers
14 views
Usablity of one embedded database across multiple exclusive applications
To be short, I am developing a web application that I want to integrate with an OODBMS. The database needs to be tightly knit with the app since there's going to be tons of objects and many-to-many ...
0
votes
1answer
89 views
Not to delete child record on deleting parent table record
I am little bit newbie in Hibernate and DBMS and stuck on a problem. I have two table. One is A and second is B. There is Many-to-One relationship between these two tables. Now on removing one record ...
0
votes
1answer
158 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 ...