In a class how do I define which are the fields to be stored? (using JDO API)
It's using persistence-modifier="persistent" ?
If I have a class with 40 fields and I only want to store one of the fields should I do the following?
<class name="Car"> <field name="Wheels" persistence-modifier="persistent" /> </class>
Which are the value used for fields that I do not want to store?
Which are the value used as default? e.g <class name="Car">
Thanks in Advance