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 working with relational databases?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Just use the Java built in transient marker:

private transient String myField;

Or is there a special reason why you cannot use it?

link|improve this answer
Thanks! I did not think about it, and now it seems I just asked a stupid question – Alina Danila Dec 6 '11 at 18:19
feedback

Your Answer

 
or
required, but never shown

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