Open Source Repository

Home /hibernate/hibernate-3.2.4.ga | Repository Home



org/hibernate/criterion/RowCountProjection.java
//$Id: RowCountProjection.java 9908 2006-05-08 20:59:20Z [email protected] $
package org.hibernate.criterion;

import org.hibernate.Criteria;
import org.hibernate.Hibernate;
import org.hibernate.HibernateException;
import org.hibernate.type.Type;

/**
 * A row count
 @author Gavin King
 */
public class RowCountProjection extends SimpleProjection {

  protected RowCountProjection() {}

  public String toString() {
    return "count(*)";
  }

  public Type[] getTypes(Criteria criteria, CriteriaQuery criteriaQuery
  throws HibernateException {
    return new Type[] { Hibernate.INTEGER };
  }

  public String toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery
  throws HibernateException {
    return new StringBuffer()
      .append("count(*) as y")
      .append(position)
      .append('_')
      .toString();
  }

}