Uses of Class
mondrian.spi.Dialect.DatabaseProduct
-
Packages that use Dialect.DatabaseProduct Package Description 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 Dialect.DatabaseProduct in mondrian.spi
Methods in mondrian.spi that return Dialect.DatabaseProduct Modifier and Type Method Description static Dialect.DatabaseProduct
Dialect.DatabaseProduct. getDatabaseProduct(String name)
Dialect.DatabaseProduct
Dialect. getDatabaseProduct()
Returns the database for this Dialect, orUNKNOWN
if the database is not a common database.Dialect.DatabaseProduct
Dialect.DatabaseProduct. getFamily()
Return the root of the family of products this database product belongs to.static Dialect.DatabaseProduct
Dialect.DatabaseProduct. valueOf(String name)
Returns the enum constant of this type with the specified name.static Dialect.DatabaseProduct[]
Dialect.DatabaseProduct. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Dialect.DatabaseProduct in mondrian.spi.impl
Fields in mondrian.spi.impl declared as Dialect.DatabaseProduct Modifier and Type Field Description protected Dialect.DatabaseProduct
JdbcDialectImpl. databaseProduct
Major database product (or null if product is not a common one)Methods in mondrian.spi.impl that return Dialect.DatabaseProduct Modifier and Type Method Description Dialect.DatabaseProduct
GreenplumDialect. getDatabaseProduct()
Dialect.DatabaseProduct
ImpalaDialect. getDatabaseProduct()
Dialect.DatabaseProduct
InfobrightDialect. getDatabaseProduct()
Dialect.DatabaseProduct
JdbcDialectImpl. getDatabaseProduct()
Dialect.DatabaseProduct
NetezzaDialect. getDatabaseProduct()
Dialect.DatabaseProduct
PostgreSqlDialect. getDatabaseProduct()
Dialect.DatabaseProduct
RedshiftDialect. getDatabaseProduct()
Dialect.DatabaseProduct
VectorwiseDialect. getDatabaseProduct()
Dialect.DatabaseProduct
VerticaDialect. getDatabaseProduct()
static Dialect.DatabaseProduct
JdbcDialectImpl. getProduct(String productName, String productVersion)
Converts a product name and version (per the JDBC driver) into a product enumeration.Methods in mondrian.spi.impl with parameters of type Dialect.DatabaseProduct Modifier and Type Method Description protected static boolean
JdbcDialectImpl. isDatabase(Dialect.DatabaseProduct databaseProduct, Connection connection)
Helper method to determine if a connection would work with a given database product.Constructors in mondrian.spi.impl with parameters of type Dialect.DatabaseProduct Constructor Description JdbcDialectFactory(Class<? extends JdbcDialectImpl> dialectClass, Dialect.DatabaseProduct databaseProduct)
Creates a JdbcDialectFactory.
-