一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

jsp 关键字模糊查询代码

时间:2010-07-06 编辑:简简单单 来源:一聚教程网

网页特效p/网页特效p.html target=_blank >jsp教程 关键字模糊查询代码

public page getpage(page page, string searchkey,int flowstatus){
         criterion cri;
        if(flowstatus==-1)
           {
               cri =restrictions.like(adtesify.pro_content, searchkey, matchmode.anywhere);
           }
           else{
               cri = restrictions.and(restrictions.like(adtesify.pro_content, searchkey, matchmode.anywhere),
                       restrictions.eq(adtesify.pro_flowstatus, flowstatus)     
                                     );
           }
        return adtesifydao.findpage(page,cri);
    }


现在这个只是实现按关键字(content)查询

热门栏目