<< Prev
Object Prevalence
Next > >
JDO - Example
PersistenceManager pm = PMFactory.initialize(..);
Company co = new Company("KDE");
Location l1 = new Location("Ludwigsburg");
User u1 = new User("Daniel");
l1.addUser(u1);
co.addLocation(l1);
pm.persist(c);