if (s_reload) {
// we pass cleanDB=true to clear out existing models
// NOTE: this will remove ALL Jena models from the named persistent store, so
// use with care if you have existing data stored
ModelMaker maker = po.getRDBMaker( s_dbURL, s_dbUser, s_dbPw, s_dbType, true );
// now load the source data into the newly cleaned db
po.loadDB( maker, s_source );
}
// now we list the classes in the database, to show that the persistence worked
ModelMaker maker = po.getRDBMaker( s_dbURL, s_dbUser, s_dbPw, s_dbType, false );
po.listClasses( maker, s_source );
}