Package mondrian.rolap
Interface RolapNativeSql.SqlCompiler
-
- All Known Implementing Classes:
RolapNativeSql.CalculatedMemberSqlCompiler
,RolapNativeSql.CompositeSqlCompiler
,RolapNativeSql.FunCallSqlCompiler
,RolapNativeSql.FunCallSqlCompilerBase
,RolapNativeSql.IifSqlCompiler
,RolapNativeSql.InfixOpSqlCompiler
,RolapNativeSql.IsEmptySqlCompiler
,RolapNativeSql.MatchingSqlCompiler
,RolapNativeSql.MemberSqlCompiler
,RolapNativeSql.NumberSqlCompiler
,RolapNativeSql.ParenthesisSqlCompiler
,RolapNativeSql.StoredMeasureSqlCompiler
,RolapNativeSql.UnaryOpSqlCompiler
- Enclosing class:
- RolapNativeSql
static interface RolapNativeSql.SqlCompiler
Translates an expression into SQL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
compile(Exp exp)
Returns SQL.
-
-
-
Method Detail
-
compile
java.lang.String compile(Exp exp)
Returns SQL. Ifexp
can not be compiled into SQL, returns null.- Parameters:
exp
- Expression- Returns:
- SQL, or null if cannot be converted into SQL
-
-