// Load configuration for B first followed by a configuration
// containing A and B. This means B is loaded twice.
// What shell we do with the second configuration containg A and B?
// Ignore it completely, only ignore second configuration of B or
// or replace the first configuration of B with the second one.
JdoConf bConf = createJdoConfB(getJdoConf(DBNAME, MAPPING));
JDOManager.loadConfiguration(bConf, getJdoConfBaseURL());
JdoConf abConf = createJdoConfAB(getJdoConf(DBNAME, MAPPING));
JDOManager.loadConfiguration(abConf, getJdoConfBaseURL());
executeQuery(JDOManager.createInstance(DBNAME + "-a").getDatabase());
executeQuery(JDOManager.createInstance(DBNAME + "-b").getDatabase());