Uses of Class
mondrian.rolap.SqlStatement.Type
-
Packages that use SqlStatement.Type Package Description mondrian.olap Mondrian's core package, this defines connections and the catalog metamodel, and allows you to execute queries.mondrian.rolap Implements the data access layer for the olap package.mondrian.rolap.agg Manages a cache of aggregates containing cell values.mondrian.rolap.aggmatcher Defines a 'matcher' which scans the schema to find candidate aggregate tables.mondrian.rolap.sql Database-independent library for generating SQL.mondrian.spi Contains the server-provider interfaces (SPIs) which user-defined extensions to Mondrian should implement.mondrian.spi.impl Provides implementations of SPIs defined in themondrian.spi
package. -
-
Uses of SqlStatement.Type in mondrian.olap
Methods in mondrian.olap that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
Property.Datatype. getInternalType()
-
Uses of SqlStatement.Type in mondrian.rolap
Methods in mondrian.rolap that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
RolapLevel. getInternalType()
SqlStatement.Type
RolapStar.Column. getInternalType()
static SqlStatement.Type
SqlStatement.Type. valueOf(String name)
Returns the enum constant of this type with the specified name.static SqlStatement.Type[]
SqlStatement.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in mondrian.rolap that return types with arguments of type SqlStatement.Type Modifier and Type Method Description List<SqlStatement.Type>
SqlStatement. guessTypes()
Method parameters in mondrian.rolap with type arguments of type SqlStatement.Type Modifier and Type Method Description static SqlStatement
RolapUtil. executeQuery(DataSource dataSource, String sql, List<SqlStatement.Type> types, int maxRowCount, int firstRowOrdinal, Locus locus, int resultSetType, int resultSetConcurrency, Util.Functor1<Void,Statement> callback)
Executes a query.Constructor parameters in mondrian.rolap with type arguments of type SqlStatement.Type Constructor Description SqlStatement(DataSource dataSource, String sql, List<SqlStatement.Type> types, int maxRows, int firstRowOrdinal, Locus locus, int resultSetType, int resultSetConcurrency, Util.Functor1<Void,Statement> callback)
Creates a SqlStatement. -
Uses of SqlStatement.Type in mondrian.rolap.agg
Methods in mondrian.rolap.agg that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
SegmentDataset. getType()
Returns the SQL type of the data contained in this dataset.Methods in mondrian.rolap.agg that return types with arguments of type SqlStatement.Type Modifier and Type Method Description static Pair<String,List<SqlStatement.Type>>
AggregationManager. generateSql(mondrian.rolap.agg.GroupingSetsList groupingSetsList, List<StarPredicate> compoundPredicateList)
Generates the query to retrieve the cells for a list of segments.Pair<String,List<SqlStatement.Type>>
AbstractQuerySpec. generateSqlQuery()
Pair<String,List<SqlStatement.Type>>
QuerySpec. generateSqlQuery()
List<SqlStatement.Type>
SegmentLoader.RowList. getTypes()
-
Uses of SqlStatement.Type in mondrian.rolap.aggmatcher
Methods in mondrian.rolap.aggmatcher that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
AggStar.Table.Column. getInternalType()
SqlStatement.Type
AggStar.Table.Level. getInternalType()
-
Uses of SqlStatement.Type in mondrian.rolap.sql
Methods in mondrian.rolap.sql that return types with arguments of type SqlStatement.Type Modifier and Type Method Description Pair<String,List<SqlStatement.Type>>
SqlQuery. toSqlAndTypes()
Methods in mondrian.rolap.sql with parameters of type SqlStatement.Type Modifier and Type Method Description String
SqlQuery. addSelect(String expression, SqlStatement.Type type)
Adds an expression to the select clause, automatically creating a column alias.String
SqlQuery. addSelect(String expression, SqlStatement.Type type, String alias)
Adds an expression to the select clause, with a specified type and column alias.String
SqlQuery. addSelectGroupBy(String expression, SqlStatement.Type type)
Adds an expression to the SELECT and GROUP BY clauses. -
Uses of SqlStatement.Type in mondrian.spi
Methods in mondrian.spi that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
Dialect. getType(ResultSetMetaData metadata, int columnIndex)
Chooses the most appropriate type for accessing the values of a column in a result set for a dialect. -
Uses of SqlStatement.Type in mondrian.spi.impl
Methods in mondrian.spi.impl that return SqlStatement.Type Modifier and Type Method Description SqlStatement.Type
JdbcDialectImpl. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
MonetDbDialect. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
NetezzaDialect. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
OracleDialect. getType(ResultSetMetaData metaData, int columnIndex)
Chooses the most appropriate type for accessing the values of a column in a result set.SqlStatement.Type
PdiDataServiceDialect. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
PostgreSqlDialect. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
SnowflakeDialect. getType(ResultSetMetaData metaData, int columnIndex)
SqlStatement.Type
VerticaDialect. getType(ResultSetMetaData metaData, int columnIndex)
-