001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2009-2009 Pentaho
008// All Rights Reserved.
009*/
010package mondrian.spi.impl;
011
012import java.sql.Connection;
013import java.sql.SQLException;
014
015/**
016 * Implementation of {@link mondrian.spi.Dialect} for the SQLstream streaming
017 * SQL system.
018 *
019 * @author jhyde
020 * @since Mar 23, 2009
021 */
022public class SqlStreamDialect extends LucidDbDialect {
023
024    public static final JdbcDialectFactory FACTORY =
025        new JdbcDialectFactory(
026            SqlStreamDialect.class,
027            DatabaseProduct.SQLSTREAM);
028
029    /**
030     * Creates a SqlStreamDialect.
031     *
032     * @param connection Connection
033     */
034    public SqlStreamDialect(Connection connection) throws SQLException {
035        super(connection);
036    }
037}
038
039// End SqlStreamDialect.java