Package org.hibernate.engine

Examples of org.hibernate.engine.QueryParameters


    Serializable[] ids = new Serializable[]{id};
    try {
      doQueryAndInitializeNonLazyCollections(
          session,
          new QueryParameters( new Type[]{type}, ids, ids ),
          true
        );
    }
    catch ( SQLException sqle ) {
      throw JDBCExceptionHelper.convert(
View Full Code Here


    Type[] idTypes = new Type[ids.length];
    Arrays.fill( idTypes, type );
    try {
      doQueryAndInitializeNonLazyCollections(
          session,
          new QueryParameters( idTypes, ids, ids ),
          true
        );
    }
    catch ( SQLException sqle ) {
      throw JDBCExceptionHelper.convert(
View Full Code Here

    Type[] idTypes = new Type[ids.length];
    Arrays.fill( idTypes, type );
    try {
      doQueryAndInitializeNonLazyCollections( session,
          new QueryParameters( parameterTypes, parameterValues, namedParameters, ids ),
          true
        );
    }
    catch ( SQLException sqle ) {
      throw JDBCExceptionHelper.convert(
View Full Code Here

  /**
   * Retrieve a list of persistent objects using a hibernate query
   */
  public List find(String query) throws HibernateException {
    return list( query, new QueryParameters() );
  }
View Full Code Here

  public List find(String query) throws HibernateException {
    return list( query, new QueryParameters() );
  }

  public List find(String query, Object value, Type type) throws HibernateException {
    return list( query, new QueryParameters(type, value) );
  }
View Full Code Here

  public List find(String query, Object value, Type type) throws HibernateException {
    return list( query, new QueryParameters(type, value) );
  }

  public List find(String query, Object[] values, Type[] types) throws HibernateException {
    return list( query, new QueryParameters(types, values) );
  }
View Full Code Here

        }
        return result;
    }

  public Iterator iterate(String query) throws HibernateException {
    return iterate( query, new QueryParameters() );
  }
View Full Code Here

  public Iterator iterate(String query) throws HibernateException {
    return iterate( query, new QueryParameters() );
  }

  public Iterator iterate(String query, Object value, Type type) throws HibernateException {
    return iterate( query, new QueryParameters(type, value) );
  }
View Full Code Here

  public Iterator iterate(String query, Object value, Type type) throws HibernateException {
    return iterate( query, new QueryParameters(type, value) );
  }

  public Iterator iterate(String query, Object[] values, Type[] types) throws HibernateException {
    return iterate( query, new QueryParameters(types, values) );
  }
View Full Code Here

  private Serializable getProxyIdentifier(Object proxy) {
    return ( (HibernateProxy) proxy ).getHibernateLazyInitializer().getIdentifier();
  }

  public Collection filter(Object collection, String filter) throws HibernateException {
    return listFilter( collection, filter, new QueryParameters( new Type[1], new Object[1] ) );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.engine.QueryParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.