Tagged Questions

9
votes
6answers
2k views

What is the difference between graph-based databases and object-oriented databases?

What is the difference between graph-based databases (http://neo4j.org/) and object-oriented databases (http://www.db4o.com/)?
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 ...
3
votes
2answers
413 views

db4o concerns

I'm interested in using db4o as my persistence mechanism in my Desktop application but I'm concerned about a couple things. 1st concern: Accidentally clipping very complex object graphs. Say I have ...
2
votes
1answer
98 views

How do you change the schema in an OO database such as DB4O?

Just getting started with DB4O object oriented database. I'm very familiar with SQL, if I upgrade the app and add a new field I just go into a SQL manager, change the schema, and initialize a new ...
2
votes
2answers
108 views

Coming from a relational database background, how should I model relationships in db4o (or any object database)?

I'm experimenting with db4o as a data store, so to get to grips with it I thought I'd build myself a simple issue tracking web application (in ASP.NET MVC). I've found db4o to be excellent in terms of ...
2
votes
1answer
146 views

db4o: compacting / shrinking

Does anyone know of a way to shrink/compact a db4o database? Thanks, John
2
votes
1answer
356 views

db4o on shared hosting with asp.net MVC

I'm wanting to use DB4o on an asp.net MVC project i'm working on but wondering if anyone has got this working on shared hosting plan, have contacted discountasp and asked them and they said go to the ...
2
votes
1answer
129 views

Maintaining backwards compatibility with my object database?

I am writing an application using an object database (db4o) and in agile fashion will be starting from a small, minimal implementation and iteratively adding features from there, while releasing new ...
1
vote
2answers
68 views

DB4O database size growing on updating objects

I've a java web server application which updates objects to the database every 10 seconds or so. I've noticed that when updating, even if no changes are applied,almost every time the size of the ...
1
vote
1answer
334 views

db4o development tools and resources?

Since the 7.x versions of db4o ObjectManager are only available as a commercial product (very expensive!) are there any alternative tools that are available to inspect/explore db4o 7.x databases? ...
0
votes
0answers
28 views

DB4O recursive deleting, how it actually works?

I'm a little bit stuck with my db4o homework and I don't really know how to solve this. The case is that I have a simple school student/credit/course database. Objects have following attributes: ...
0
votes
1answer
31 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
3answers
120 views

Android: DB4O Problems

I'm trying to populate a listviewactivity's list with objects returned from an DB40 database, but my app keeps crashing and I'm not entirely sure why. It would help if I knew how to read LogCat and ...
0
votes
0answers
36 views

inserting/selecting couple hundred of rows takes long

For the android application I'm creating I decided to use db4o for managing my persistence data. For this I have to insert a few hundred rows of a very simple object. public class Teacher { ...
0
votes
1answer
129 views

slow db4o querys on Android

Currently I am trying to integrate db4o into my App. I have a Model which contains - lets say 15 primitives - wrapped in other Objects. storing them is easy and fast, but to recieve them is pain. I ...
0
votes
0answers
125 views

How to retrieve objects typed in dynamic assembly from db4o database?

In my experiment, I saved some objects of an emitted type, which subclassed a type in the entry assembly, like the one below: ///normal assembly public class Person{ public string Name; public int ...
0
votes
1answer
76 views

Does db4o (at version 8) still acquire complete db file lock on write

I read this here : http://developer.db4o.com/Forums/tabid/98/aft/5027/Default.aspx#20510 The link is from 2008 I am hoping they have come up with a better way by now.
0
votes
2answers
211 views

DB4O close() wipe the DB?

I'm using db4o to store different objects in an android application. I get json contents from a sever then them into Objects (contacts here) that I store in a db4o file. ObjectContainer mainDB = ...
0
votes
1answer
214 views

How to use the distinct on databases DB4O

the data like this: file1 file2 aaaa milk aaaa red bbbb box bbbb pen cccc rose i want get result like this: file1: aaaa bbbb cccc who can tell me how to do using DB4objects ...