final Map<Integer, Byte> classid = new HashMap<Integer, Byte>();
final Map<Integer, MutableInt> scraped = new HashMap<Integer, MutableInt>();
try {
while (result.next()) {
try {
count.put(result.getInt("schemaid"), new MutableInt(result.getInt("stk")));
classid.put(result.getInt("schemaid"), result.getByte("classid"));
scraped.put(result.getInt("schemaid"), new MutableInt(0));
} catch (final SQLException e) {
e.printStackTrace();
}
}
} catch (final SQLException e) {