}
PersistenceManager persistTwo = new PersistenceManager(driver, secondDatabase, login, password);
// drop all tables in both
persistOne.dropTable(Object.class);
persistTwo.dropTable(Object.class);
// create some objects in the first database
ComplexObject co = new ComplexObject();
co.setData(new double[] { 1, 2, 3 });
co.setSimplestObject(new SimplestObject(5.0));
persistOne.saveObject(co);