public class Educations extends Session { //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // User-defined methods //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /** * Initializes the educations storage. * * @return the educations storage * @throws Exception if the initialization throws an error */ @SuppressWarnings("unused") private DBStorage initEducations() throws Throwable { dbsEducations = new DBStorage(); dbsEducations.setDBAccess(getDBAccess()); dbsEducations.setFromClause("V_EDUCATIONS"); dbsEducations.setWritebackTable("EDUCATIONS"); dbsEducations.open(); return dbsEducations; } } // Educations