Tagged Questions

24
votes
4answers
4k views

db4o experiences?

I'm currently trying out db4o (the java version) and I pretty much like what I see. But I cannot help wondering how it does perform in a real live (web-)environment. Does anyone have any experiences ...
5
votes
3answers
178 views

Best practise for adding a bidirectional relation in OO model

I'm struggling to come up with a good way of adding a bidirectional relation in OO model. Let's say there is a Customer who can place many Orders, that is to say there is a one-to-many association ...
3
votes
1answer
190 views

DB4o HashMap toString()

As a learning tool for DB4o and Java I have started to create a Telephone Directory. To do this I create an instance of a TelephoneDirectory which contains a year and a HashMap of entries. public ...
3
votes
2answers
305 views

How does db4o instantiate objects?

What mechanism does db4o use to instatniate stored objects ? My class isn't Serializable and doesn't provide zero argument constructor and the only constructor throws NullPointerException when it's ...
2
votes
4answers
413 views

JDO: Is the PersistenceManager a singleton?

Just the basics: I'm using DataNucleus backed with an embedded DB4O database. If I do this simple test: PersistenceManager pm1 = persistenceManagerFactory.getPersistenceManager(); ...
2
votes
1answer
133 views

ClassCastException in DataNucleus DAO object when persisting/retreiving an Object using JDO

I've created a simple webapp using Spring & Jetty, and am creating a hello world JDO test using DataNucleus & DB4O. I can persist a class no problem, but when I go to query for the class I ...
2
votes
1answer
96 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
1answer
113 views

Getting Db4o blobs out of the Database without storing them to disk

Is there a way to get a Db4o Blob out of the Database without storing it to disk? I only found the method void com.db4o.types.Blob.writeTo(File arg0)
2
votes
1answer
1k views

How to install and use db4o for Android?

I have to admit that I'm new to Java and Android. db4o seems to be an excellent DB framework to replace SQLite http://developer.db4o.com/Platforms/Java/Android.aspx. I want to use it for my Android ...
2
votes
2answers
586 views

How to use an OSGi service from a web application?

I'm trying to develop a web application that is going to be launched from a HTTP OSGi service, this application needs to use other OSGi service (db4o OSGi), for what I need a reference to a ...
2
votes
2answers
2k views

Maven and db4o dependency

I'm intrigued to test new frameworks in the Java world, and decided to create a new project that takes advantage of Maven and db4o. I'm starting to get a hang of Maven, but I have a hard time adding ...
2
votes
4answers
5k views

How to disable Java security manager?

Is there any way to completely disable Java security manager? I'm experimenting with source code of db4o. It uses reflection to persist objects and it seems that security manager doesn't allow ...
1
vote
1answer
46 views

With Db4o How to update an already existing object on which we defined a unique constraint

I create an object on wich the server has a unique constraint defined on one field. But when I want to update the object previously fetched, I get a "UniqueFieldValueConstraintViolationException" ...
1
vote
2answers
64 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
81 views

db4o : ActivationDepth seems to have no effect (?)

Can someone please explain to me why setting the Activation Depth seems to have no effect in the code-sample below ? This sample creates 'Block'-objects which all have a number and a child-block. ...
1
vote
2answers
113 views

hierarchical nested data structure in db4o (or any other oodb)

Really my question is, if I were to use a nested data structure in oodb would I be placing instance of classes within other instances in the db, or is there some sort of relational mapping that would ...
1
vote
1answer
143 views

Db4o is extremely slow in Eclipse debug mode

I'm working with a db4o database and have a database of approximately 1000-5000 objects on Mac OS X, developing in Eclipse Helios. Currently, I'm retrieving all objects of a certain class: ...
1
vote
2answers
239 views

db4o - count number of total records in database?

I am using db4o and was wondering, how can I get the total number of objects in the database? There isn't an explicit way using the API; however, I can write a query to simply count all the objects, ...
1
vote
3answers
518 views

db4o vs sql, sqlite in java server

Im creating a java web server for storing JSON strings with location data (latitude, longitude and time) I wondering if there are any advantages(performance, scalability, maintenance, etc) for using ...
1
vote
2answers
471 views

Db4o, Java: Storing images using blobs

I want to store images in Db4o using Blobs. How can I store them and how do I get them out again?
1
vote
1answer
259 views

Setting unique key constraint for Db4oEmbedded EmbeddedConfiguration

I want to set unique key constraint for Db4oEmbedded EmbeddedConfiguration. Here goes my code: EmbeddedConfiguration myConf = Db4oEmbedded.newConfiguration(); ...
0
votes
1answer
57 views

db4o and alternatives

I've got a Java application that needs to deal with 10s to 100s of gigabytes of data. Any DBMS needs to be embedded. We currently have a db4o solution that is slow, brittle and complicated. I will ...
0
votes
1answer
46 views

Weird behaviour with db4o after refactoring enum

We have refactored an enum used in our model to include new values. Now when the application executes (using a database file created by the old application), some switch/case statements behave very ...
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
2answers
31 views

db4o: set and get method not available?

ObjectContainer db=Db4o.openFile(Util.DB4OFILENAME); db.get(); //doesn't exist eclipse shows openFile is deprecitated with strike out. I don't have get or set method.
0
votes
1answer
33 views

Java: can db4o store org.w3c.dom.Node?

Is it possible to store org.w3c.dom.Node and org.w3c.dom.NodeList as well? public DocumentElement { private String name; private Node thisNode; private NodeList thisList; } If not, is it possible ...
0
votes
1answer
86 views

DB4O performance retrieving a large number of objects

I'm interesting in using DB4O to store the training data for a learning algorithm. This will consist of (potentially) hundreds of millions of objects. Each object is on average 2k in size based on ...
0
votes
2answers
79 views

Store a list of objects in db4o

I wonder if there's a more beautiful way to store a list of objects then: ArrayList<Item> itemsList = new ArrayList<Item>; itemsList.add(new Item(1)); itemsList.add(new Item(2)); ...
0
votes
1answer
107 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
1answer
70 views

Android strange Debug Log Message

I am using db40 in my Android App. If I want to store a Notification, they are stored, but after that my App crashes with this strange Message: 08-24 13:58:03.753: INFO/DEBUG(7961): *** *** ...
0
votes
0answers
111 views

com.db4o.ext.DatabaseClosedException [closed]

I'm working with db4o embedded for Java (JSE6) running a Servlet app under Tomcat. Lately I started getting weird exceptions. When trying to save a new object to the DB I get ...
0
votes
3answers
151 views

db4o - DatabaseClosedException

I am trying to store an entity with db4o through an arquillian test case and am getting a DatabaseClosedException: Test set: com.walterjwhite.address.api.datastore.TestAddressDatastore Tests run: ...
0
votes
1answer
48 views

Using javasist GWT and DB4O

Is there any open source work done yet on javasist, DB4o and GWT, what I need is you create dynamic objects store them in database and then view them on the client side, I am wondering also what is ...
0
votes
1answer
136 views

Problems with DB4O on Android - Update objects

I have a problem when I try to update my persistences objects. I retrive my objects using. objectContainer.query(myObject); modified and save again using: objectContainer.store(myObject); But ...
0
votes
1answer
144 views

android db4o deactivate object properly

the way i'm using db4o is really just read-only. I will package a db with the application and do some background updating to it every now and again which i can handle differently. But for my ...
0
votes
2answers
121 views

Serializable[] attribute in Object not stored in db4o

I ran in a strange behavior of db4o. When I persist an Object (implementing Serializable) with an attribute of Serializable[], the Array is only returned once from the store correctly then ever after ...
0
votes
1answer
97 views

JDO not retrieving/persisting a collection

I have the following data model class defined: @PersistenceCapable public class TestSerializableModelObj { @Persistent(serialized="true", defaultFetchGroup="true") private MyPOJO myField; ...
0
votes
1answer
217 views

How to close a db4o connection when application is shutdown/restarted?

I have just started writing my first webapp using java/wicket/db4o and all technologies are new to me so please forgive what might be a daft question. I have created a simple MyDao singleton class ...
0
votes
2answers
423 views

Is db4o object manager enterprise free? Where can I download it? Is it a standalone application?

As per the title I have three parts to this question... Is db4o object manager enterprise free? -I saw a blog post about it being free. Where can I download it? -the website is rather unclear Is it ...
0
votes
1answer
125 views

Problem with db4o (java) when running a query

I'm glancing through parts of the official db4o tutorial, and I'm trying to make a modification to the code they give you for running native queries: //the original List<Pilot> pilots = ...
0
votes
1answer
77 views

Caching big children in data model with db4o

I have a data model with a skeleton (metadata) and large data objects. I'd like to keep the skeleton in memory and hold weak references to the data objects. I understand how I would implement this ...
0
votes
2answers
143 views

Can/should I use WeakReference in my complex object structure with db4o?

I'm considering to port an application to db4o. The data model consists of lots of small objects with a lot of references between each other. For example, I have a book which points to an author and ...
0
votes
3answers
278 views

db4o to preserve identity of objects

Is there a way to preserve an objest identity in db4o. Suppose I store a BigDecimal in embedded db4o. When I read it twice I get two distict objects with the same value (which is quite obvious). Is ...
0
votes
1answer
314 views

db4o and OSGi - empty database after restart

I'm using db4o 6.4.54 in OSGi environment as a model storage. Every time I restart OSGi framework, the database appears to be empty, although the file is there and not empty definitely. I have the ...