Package net.sf.jsqlparser.statement.select

Examples of net.sf.jsqlparser.statement.select.SelectVisitor


   *
   * @param select
   * @param expr
   */
  public static void addExpression(Select select, final Expression expr) {
    select.getSelectBody().accept(new SelectVisitor() {

      @Override
      public void visit(PlainSelect plainSelect) {
        plainSelect.getSelectItems().add(new SelectExpressionItem(expr));
      }
View Full Code Here

TOP

Related Classes of net.sf.jsqlparser.statement.select.SelectVisitor

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.