首页上一页 1 下一页尾页 1 条记录 1/1页
《eclipse应用开发完全手册》第19章的src\com\lzw\dao\dao.java的相关问题
发表在Java图书答疑
2009-07-12
是否精华
是
否
版块置顶:
是
否
在该章的dao.java文件中有这么一行代码:
// 获取单个商品信息
public List getGoodsByType(Integer type) {
return getHibernateTemplate()
.find("from VGoods where id.subId=" + type);
}
请问("from VGoods where id.subId=" + type)
能否改为("from VGoods where subId=" + type)?
谢谢!
// 获取单个商品信息
public List getGoodsByType(Integer type) {
return getHibernateTemplate()
.find("from VGoods where id.subId=" + type);
}
请问("from VGoods where id.subId=" + type)
能否改为("from VGoods where subId=" + type)?
谢谢!