Package org.hibernate.engine.query.spi

Examples of org.hibernate.engine.query.spi.ParameterMetadata


  }

  @Override
  public SQLQuery createSQLQuery(String queryString) throws HibernateException {
    // Parameters are not supported yet
    ParameterMetadata parameterMetadata = new ParameterMetadata( null, null );
    return new NoSQLQuery( queryString, (SessionImplementor) this, parameterMetadata );
  }
View Full Code Here


  public FullTextQuery createFullTextQuery(org.apache.lucene.search.Query luceneQuery, Class<?>... entities) {
    return new FullTextQueryImpl(
        luceneQuery,
        entities,
        sessionImplementor,
        new ParameterMetadata( null, null )
    );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.engine.query.spi.ParameterMetadata

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.