06_传智播客hibernate教程_完善HibernateUtil类及hql查询入门 &&07_传智播客hibernate教程_实体类或属性名与数据库关键字冲突问题

HQL and native SQL queries are represented with an instance of org.hibernate.Query.

This interface offers methods for

  1 parameter binding,

2 result set handling,

3 the execution of the actual query.

 

接口Query 提供的3项功能

 

补充 

  HQl 语句操作的是对象,不是数据库的表,并且支持多态 from 类名 
  如果 from Object 则查询数据库所有的表

 

You always obtain a Query using the current Session:

 

List cats = session.createQuery(

"from Cat as cat where cat.birthdate < ?").setDate(0, date).list();

 

List mothers = session.createQuery(

"select mother from Cat as cat join cat.mother as mother where cat.name = ?")

.setString(0, name).list();

 

参数绑定除了基本类型还可以是 自定义对象

List kittens = session.createQuery(

"from Cat as cat where cat.mother = ?").setEntity(0, pk).list();

 

Cat mother = (Cat) session.createQuery(

"select cat.mother from Cat as cat where cat = ?").setEntity(0, izi).uniqueResult();]]

(如果检索出的记录是多条的话,报错)

 

Query mothersWithKittens = (Cat) session.createQuery(

"select mother from Cat as mother left join fetch mother.kittens");

Set uniqueMothers = new HashSet(mothersWithKittens.list());

 

A query is usually executed by invoking list(). The result of the query will be loaded completely into a collection in memory. Entity instances retrieved by a query are in a persistent state. The

uniqueResult() method offers a shortcut if you know your query will only return a single object.

Queries that make use of eager fetching of collections usually return duplicates of the root objects, but with their collections initialized. You can filter these duplicates through a Set.

 

0 7_传智播客hibernate教程_实体类或属性名与数据库关键字冲突问题

 

解决:

  1 修改数据库表名和字段名

  2 在配置文件 用 反引号 ··  table 和 column 的值引起来

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章