JPOX implements the JDO and JPA specifications. These specifications define how Java classes can be persisted to
a datastore. Implementations of JDO can persist data to whichever datastores they choose. JPOX supports
persisting data to a wide range of RDBMS Datastores as well as
DB4O
The next thing to do is to learn about JDO and JPA. You need to understand the basic concepts involved.
The JDO Overview is one place to start but there is plenty of reading
on the internet, starting with the JDO2 specification of course or the JPA1 specification.
The best thing to do after some reading is to try
the JDO Tutorial or
the JPA Tutorial.
This explains the basic steps of applying JDO/JPA (and JPOX) to your own application. The source code
from the Tutorial is available for download. Please download it
and start up your development environment with the Tutorial classes and files.
Once you have completed the Tutorial you should be ready to start applying JPOX to your own application
and benefiting from what it offers.