Package de.fuberlin.wiwiss.d2rq.expr

Examples of de.fuberlin.wiwiss.d2rq.expr.BooleanToIntegerCaseExpression


  * Server. (No boolean type) But, the entire expression can be
  * moved inside a CASE WHEN statement to return an int for the
  * boolean result.
  */
  public Expression booleanExpressionToSimpleExpression(Expression expression) {
      return new BooleanToIntegerCaseExpression(expression);
  }
View Full Code Here


  /**
  * Oracle doesn't actually support booolean expressions, except in
  * a few places. Turn the boolean into an int using a CASE statement
  */
  public Expression booleanExpressionToSimpleExpression(Expression expression) {
      return new BooleanToIntegerCaseExpression(expression);
  }
View Full Code Here

TOP

Related Classes of de.fuberlin.wiwiss.d2rq.expr.BooleanToIntegerCaseExpression

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.