码迷,mamicode.com
首页 > 其他好文 > 详细

adf 笔记

时间:2014-12-30 00:14:05      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

1>adf标准视图查询,用到RowMatch对结果查询,一定记得在vo.executeQuery()后,调用setRowMatch(null),否则其它页面的结果中会加上查询条件,导致结果不正确。

            PlanDetailVOImpl vo=   this.getPlanDetail1();
            RowMatch rm=new RowMatch();
            rm.setWhereClause("plan_type_sub_uuid=‘jdht‘");
            vo.setRowMatch(rm);
            vo.executeQuery();
            vo.setRowMatch(null);

 

adf 笔记

标签:

原文地址:http://www.cnblogs.com/guohu/p/4192561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!