String sql = SqlFactory.getSelectSql(t, dbType).selectWhere(
fields, null, likeType, true, false, isOR, orderField,
orderType, currPage, numPerPage);
list = JdbcUtil.getList(con, clazz, sql);
} catch (Exception e) {
throw new DAOException("divPageByFieldLikeValue exception", e);
}
}
return list;
}