- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
hql 查询语句(HQL query statement)
hql 查询语句(HQL query statement)
HQL query:
Criteria queries on the query conditions of object-oriented package, in accordance with the programmers way of thinking, but the HQL (Hibernate Query Lanaguage) query provides a more extensive and flexible query characteristics, so the Hibernate will HQL query for official recommended standard query, HQL query based on Criteria query function covers all the next, provides a similar standard SQL queries, but also provides a more object-oriented package. The full HQL statement follows:
Select/update/delete...... From...... Where...... Group by...... Having...... Order by...... Asc/desc
Where update/delete is the newly added function in Hibernate3, and you can see that HQL queries are very similar to standard SQL queries. Because of the core position of the HQL query throughout the Hibernate entity operating system, this section will focus on specific technical details of HQL operations.
1, entity query:
As for entity query technology, we have already covered many of them in the past, such as the following example:
String hql=, from User user;
List list=session.CreateQuery (HQL).List ();
The result of the above code execution is to query all the data corresponding to the User entity object, and encapsulate the data into a User entity object and return it in List. It should be noted that the Hibernate entity exists to determine the inheritance relationship query, such as we have discussed in the previous mapping entity the inheritance relation of Employee entity object, it has two sub categories are HourlyEmployee, SalariedEmployee, if there is such a HQL statement: from Employee, when the retrieval Hibernate will retrieve the all the corresponding Employee type object data (including its subclasses HourlyEmployee, SalariedEmployee corresponding data).
Because the HQL statement and the SQL statement is similar to standard, so we can use the where clause in the HQL statement, and can use a variety of expressions in the where claus
您可能关注的文档
- (转)什么是西南大旱的最坏准备_月是故乡明_新浪博客((trans) what's the worst preparation for a drought in Southwest China _ is home next month _ Sina blog).doc
- (人教版)八年级下册语文课后生字词拼音及解释(完整版)((PEP) grade eight Chinese Pinyin words epigenetic and interpretation (full version)).doc
- 0-90度正弦值(0-90 degree sine).doc
- - 上海lng加气站 上海cng加气站博客上海lng加气站 上海cng加气站博客(- Shanghai LNG filling station, Shanghai CNG filling station blog, Shanghai LNG filling station, Shanghai CNG filling station blog).doc
- 010年顺义区中考二模数学试题(010 years of Shunyi District senior high school entrance examination mathematics examination the second mock exam).doc
- (设计)工作细则 - 上海工程技术大学 继续教育学院((Design) working rules - Continuing Education College of Shanghai University of Engineering Science).doc
- 02-03第一学期初三语文试卷52898(02-03 Chinese exam paper for the first semester 52898).doc
- 020我国基层群众自治制度地位的重大提升(020, the important promotion of our country's grass-roots mass autonomy system).doc
- 05-2-1.汉王降价,能降出个怎样的未来(05-2-1. Hanvon prices can drop out of what the future).doc
- 05.无形资产(5 intangible assets).doc
- hr主管不可不知的25个趋势(25 trends that HR executives need not know).doc
- hr喜欢什么样的简历(What kind of resume does HR like).doc
- h_264视频编码基本知识(Basic knowledge of h_264 video coding).doc
- hr测评名词荟萃(HR meta assessment).doc
- ict中的rfid在逆向物流上的应用(The application of ICT in RFID in reverse logistics).doc
- ie无法访问网站解决方法之一(Ie is unable to access one of the web site solutions).doc
- ie知识(IE knowledge).doc
- illustrator 功能特点(插画功能特点).doc
- iphone 3g 3gs 查看产地的信息列表(IPhone 3G 3GS view the information list of the origin).doc
- irc昵称服务(nickserv)命令(管理者命令)(IRC nickname service (nickserv) command (supervisor command)).doc
文档评论(0)