@Override
 public int countLessThanALevel(int level) throws StorageException {
   return MySQLQueryHelper.countWithCriterion(TABLE_NAME, String.format("%s<%d", LEVEL, level));
 }
 @Override
 public int countAll() throws StorageException {
   return MySQLQueryHelper.countAll(TABLE_NAME);
 }