|
| |||||||||
| Tags: hibernate, hibernate query language, hql tutorial |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Need HQL Tutorial
Hello, Dose anyone know about a good HQL tutorial available online? Thanks in advance. chickens |
|
#2
| ||||
| ||||
| Re: Need HQL Tutorial
Here are some good tutorials. http://code.google.com/p/hypertable/wiki/HQLTutorial http://docs.jboss.org/hibernate/stab.../queryhql.html Hope this helps. |
|
#3
| ||||
| ||||
| Re: Need HQL Tutorial HQL HQL stands for Hibernate Query Language, and is the data query language that comes with Hibernate. Hibernate is a Java-based library for accessing relational data. You can download Hibernate at www.hibernate.org HQL is very similar to SQL, but has two powerful benefits: A Simple Example: SQL vs HQL A normal SQL query looks something like this: Code: SELECT name FROM customer WHERE state = "CA" Code: SELECT cust.name FROM customer cust WHERE cust.state = "CA" |
|
#4
| ||||
| ||||
| Re: Need HQL Tutorial Complete Hibernate 3.0 Tutorial Hibernate lets you develop persistent classes following common Java idiom - including association, inheritance, polymorphism, composition and the Java collections framework. The Hibernate Query Language, designed as a "minimal" object-oriented extension to SQL, provides an elegant bridge between the object and relational worlds. Hibernate also allows you to express queries using native SQL or Java-based Criteria and Example queries. Hibernate is now the most popular object/relational mapping solution for Java. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Need HQL Tutorial" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tutorial # 9 | ferrari | Guides & Tutorials | 29 | 06-01-2011 04:35 AM |
| Silverlight Tutorial | SoftWore | Guides & Tutorials | 2 | 07-08-2010 12:28 PM |
| iTunes 9 Tutorial | Maq.H | Tips & Tweaks | 2 | 19-01-2010 05:36 AM |
| MLB 2K9 Pitching Tutorial | Keffer | Video Games | 3 | 13-08-2009 03:23 PM |
| Tutorial #2 | ferrari | Guides & Tutorials | 9 | 02-02-2008 12:26 PM |