神HQL,求解惑
hql = "from Users where username=? and password=?";
学生类映射
<hibernate-mapping>
<class name="entity.Users" table="users">
数据库的表名是:users
结果执行测试就没问题了。
但如果是:
hql = "from users where username=? and password=?";
就会报错。惊了,这是怎么回事?hql不按数据库表名查询吗?
hql = "from Users where username=? and password=?";
学生类映射
<hibernate-mapping>
<class name="entity.Users" table="users">
数据库的表名是:users
结果执行测试就没问题了。
但如果是:
hql = "from users where username=? and password=?";
就会报错。惊了,这是怎么回事?hql不按数据库表名查询吗?
2016-04-05
举报