Tagged Questions

9
votes
12answers
891 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 ...
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
1answer
270 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
57 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
214 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 ...
0
votes
1answer
24 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 ...