Results 1 to 4 of 4

Thread: Need HQL Tutorial

  1. #1
    Join Date
    Apr 2008
    Posts
    32

    Need HQL Tutorial

    Hello,

    Dose anyone know about a good HQL tutorial available online?

    Thanks in advance.
    chickens

  2. #2
    Join Date
    Apr 2008
    Posts
    21

    Re: Need HQL Tutorial


  3. #3
    Join Date
    May 2008
    Posts
    32

    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"
    In HQL, this same query looks something like this:

    Code:
    SELECT cust.name
     FROM customer cust
     WHERE cust.state = "CA"

  4. #4
    Join Date
    May 2008
    Posts
    44

    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.

Similar Threads

  1. Tutorial for jDownloader
    By Gunilla in forum Technology & Internet
    Replies: 5
    Last Post: 26-02-2011, 09:04 AM
  2. iTunes 9 Tutorial
    By Maq.H in forum Tips & Tweaks
    Replies: 2
    Last Post: 19-01-2010, 05:36 AM
  3. Tutorial on how to use Paypal
    By Adolfa in forum Technology & Internet
    Replies: 3
    Last Post: 14-12-2009, 09:45 PM
  4. Sybase tutorial
    By djbbenn in forum Software Development
    Replies: 2
    Last Post: 01-08-2009, 07:43 PM
  5. Tutorial #2
    By ferrari in forum Guides & Tutorials
    Replies: 9
    Last Post: 02-02-2008, 12:26 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,583,472.21701 seconds with 17 queries