tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Hibernate > Hibernate Query Language > Named Parameter Object

Named Parameter Object 

The following example shows how to use named parameter object. Refer first example for the configuration and mapping.

File Name  :  
com/bethecoder/tutorials/hibernate/basic/tests/HQLNamedParamObjectTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.hibernate.basic.tests;

import java.util.List;

import org.hibernate.Query;
import org.hibernate.Session;

import com.bethecoder.tutorials.hibernate.basic.Company;
import com.bethecoder.tutorials.hibernate.basic.CompanyShortInfo;
import com.bethecoder.tutorials.hibernate.basic.util.HibernateUtil;

public class HQLNamedParamObjectTest {

  /**
   @param args
   */
  public static void main(String[] args) {

    Session session = HibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    
    String HQL_QUERY = "from Company comp where comp.id = :id and comp.name = :name";
    Query query = session.createQuery(HQL_QUERY);
    
    CompanyShortInfo shortInfo = new CompanyShortInfo(4"IJK");
    query.setProperties(shortInfo)//refers shortInfo.getId() and shortInfo.getName()

    List<Company> companies = query.list();    
    System.out.println("Selected row count : " + companies.size());
    
    for (Company company : companies) {
      System.out.println(company);
    }

    session.getTransaction().commit();
    session.close();
  }
  
}
   

It gives the following output,
Selected row count : 1
{ id = 4, name = IJK, employeeCount = 67890, 
	projectCount = 850, address1 = add1112, address2 = add2223 }



 
  


  
bl  br