Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 only an Array with null elements.

I use db4o 7.12.

Edit

This is the POJO:

public class ResponseRowWrapper implements Serializable {

/**
 * 
 */
private static final long serialVersionUID = 1L;


private long uuid;
private long responseUuid;
private Serializable[] row;
private long timestamp;

And this the config in spring:

        <property name="transparentActivation" value="true" />
    <property name="transparentPersistence" value="true" />
    <property name="configurationCreationMode" value="NEW" />
    <property name="lockDatabaseFile" value="false" />
    <property name="callConstructors" value="true" />
    <property name="exceptionsOnNotStorable" value="true" />

and in in the db4o Config Object:

configuration.common().objectClass(ResponseRowWrapper.class).cascadeOnUpdate(true);
share|improve this question
Show some code. – Bozho Jan 2 '11 at 17:18

2 Answers

Try passing the db4o configuration object a cascadeOnActivate(true) (that causes a cascaded load) or set a higher activation depth in db4o.

share|improve this answer
thanks for the answer, but I figured out that is needed to use an Object[] for storing an Array of Serilizables. But next time I need some thing similar I will try your solution! – joecks Jan 22 '11 at 9:26
up vote 0 down vote accepted

I solved it, but I can't tell what was wrong with a Serializable[] but it is not working, I need to use Object[] and just care by myself that there are only Serializables inside.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.