Пример #1
0
 /**
  * ��ݴ����ȡ����
  *
  * @param code
  * @return
  * @throws Exception
  */
 public Collection<Level> findAll() throws Exception {
   ResultSet rs = dbHelper.execQuery(SQL_QUERY_LEVEL);
   Collection<Level> list = dbHelper.getCollection(rs, Level.class);
   return list;
 }