标题:struts+hibernate 问题。。
只看楼主
zhangjipeng
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2007-11-6
 问题点数:0 回复次数:4 
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
黄袖标
Rank: 4
等 级:贵宾
威 望:13
帖 子:676
专家分:0
注 册:2007-3-22
得分:0 
from welcome

Welcome
是不是大小写搞错了
这个要个po中定义的一致。

我胡汉三又回来啦!物是人非啊,只有静夜思大大还在。
2007-12-25 11:44
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
黄袖标
Rank: 4
等 级:贵宾
威 望:13
帖 子:676
专家分:0
注 册:2007-3-22
得分:0 
有时候报sql错误,直接把show-sql 设置成true,然后把那条出错的sql放到工具里跑下,比如plsql,这样对于找sql语法错误很快的。

我胡汉三又回来啦!物是人非啊,只有静夜思大大还在。
2007-12-25 12:02
roemin
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2010-1-24
得分:0 
welcome这个是实体类的名称  要大写的!
2010-01-24 19:40



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




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

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