Examples of showAsString()


Examples of org.hibernate.hql.ast.util.ASTPrinter.showAsString()

  void showHqlAst(AST hqlAst) {
    if ( AST_LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( HqlTokenTypes.class );
      printer.setShowClassNames( false ); // The class names aren't interesting in the first tree.
      AST_LOG.debug( printer.showAsString( hqlAst, "--- HQL AST ---" ) );
    }
  }

  private void errorIfDML() throws HibernateException {
    if ( sqlAst.needsExecutor() ) {
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

    // Transform the tree.
    w.statement( hqlAst );

    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( SqlTokenTypes.class );
      LOG.debug( printer.showAsString( w.getAST(), "--- SQL AST ---" ) );
    }

    w.getParseErrorHandler().throwQueryException();

    return w;
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

  }

  void showHqlAst(AST hqlAst) {
    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( HqlTokenTypes.class );
      LOG.debug( printer.showAsString( hqlAst, "--- HQL AST ---" ) );
    }
  }

  private void errorIfDML() throws HibernateException {
    if ( sqlAst.needsExecutor() ) {
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

      throw new HibernateException( "Unable to parse order-by fragment", t );
    }

    if ( LOG.isTraceEnabled() ) {
      ASTPrinter printer = new ASTPrinter( OrderByTemplateTokenTypes.class );
      LOG.trace( printer.showAsString( parser.getAST(), "--- {order-by fragment} ---" ) );
    }

    // Render the parsed tree to text.
    OrderByFragmentRenderer renderer = new OrderByFragmentRenderer( context.getSessionFactory() );
    try {
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

      throw new HibernateException( "Unable to parse order-by fragment", t );
    }

    if ( LOG.isTraceEnabled() ) {
      ASTPrinter printer = new ASTPrinter( OrderByTemplateTokenTypes.class );
      LOG.trace( printer.showAsString( parser.getAST(), "--- {order-by fragment} ---" ) );
    }

    OrderByFragmentRenderer renderer = new OrderByFragmentRenderer();
    try {
      renderer.orderByFragment( parser.getAST() );
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

    // Transform the tree.
    w.statement( hqlAst );

    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( SqlTokenTypes.class );
      LOG.debug( printer.showAsString( w.getAST(), "--- SQL AST ---" ) );
    }

    w.getParseErrorHandler().throwQueryException();

    return w;
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

  }

  void showHqlAst(AST hqlAst) {
    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( HqlTokenTypes.class );
      LOG.debug( printer.showAsString( hqlAst, "--- HQL AST ---" ) );
    }
  }

  private void errorIfDML() throws HibernateException {
    if ( sqlAst.needsExecutor() ) {
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

    // Transform the tree.
    w.statement( hqlAst );

    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( SqlTokenTypes.class );
      LOG.debug( printer.showAsString( w.getAST(), "--- SQL AST ---" ) );
    }

    w.getParseErrorHandler().throwQueryException();

    return w;
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

  }

  void showHqlAst(AST hqlAst) {
    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( HqlTokenTypes.class );
      LOG.debug( printer.showAsString( hqlAst, "--- HQL AST ---" ) );
    }
  }

  private void errorIfDML() throws HibernateException {
    if ( sqlAst.needsExecutor() ) {
View Full Code Here

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter.showAsString()

      throw new HibernateException( "Unable to parse order-by fragment", t );
    }

    if ( LOG.isTraceEnabled() ) {
      ASTPrinter printer = new ASTPrinter( OrderByTemplateTokenTypes.class );
      LOG.trace( printer.showAsString( parser.getAST(), "--- {order-by fragment} ---" ) );
    }

    // Render the parsed tree to text.
    OrderByFragmentRenderer renderer = new OrderByFragmentRenderer( context.getSessionFactory() );
    try {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.