标题:struts+hibernate 问题。。
取消只看楼主
zhangjipeng
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2007-11-6
 问题点数:0 回复次数:1 
struts+hibernate 问题。。
错误:
     javax.servlet.ServletException: could not execute query
 
action文件:
     
    public ActionForward execute (ActionMapping mapping,  
            ActionForm form,
            HttpServletRequest request,
            HttpServletResponse response) {
        IndexForm indexform = new IndexForm();
        Session session = HibernateSessionFactory.getSession();
        String hql="from welcome i where i.name="+request.getParameter("name")+" and i.password="+request.getParameter("password");
        Query query = session.createQuery(hql);
        System.out.println(hql);
        List list = null;
        list = query.list();
        System.out.println(list.size());
        if(list.isEmpty())
            return mapping.findForward("no");
        else
            return mapping.findForward("ok");
    }

奇怪的是我在页面上输入一条数据库里没有的数据他会正确forword到no,如果数据库里有数据他就报could not execute query 错误。请教了。。。。。
搜索更多相关主题的帖子: hibernate struts 
2007-12-25 10:54
zhangjipeng
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2007-11-6
得分:0 
问题已解决。。自己太粗心。!hql格式错误:
 hql="from welcome i where i.name='"+request.getParameter("name")+" 'and i.password='"+request.getParameter("password")"'"; 加上单引号就OK了。。。
2007-12-25 11:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-194175-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.225876 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved