// STEP 7: read from Employee_Info_View
System.out.println("*** read from EMPLOYEE_INFO_VIEW ***");
DBCommand cmd = db.createCommand();
cmd.select (db.V_EMPLOYEE_INFO.getColumns());
cmd.orderBy(db.V_EMPLOYEE_INFO.C_NAME_AND_DEP);
printQueryResults(cmd, conn);
// STEP 8: bulkReadRecords
System.out.println("*** bulkReadRecords: reads employee records into a hashmap, reads employee from hashmap and updates employee ***");
HashMap<Integer, DBRecord> employeeMap = bulkReadRecords(conn);