/*
// This software is subject to the terms of the Eclipse Public License v1.0
// Agreement, available at the following URL:
// http://www.eclipse.org/legal/epl-v10.html.
// Copyright (C) 2009-2009 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.spi.impl;
import java.sql.Connection;
import java.sql.SQLException;
/**
* Implementation of {@link mondrian.spi.Dialect} for the SQLstream streaming
* SQL system.
*
* @author jhyde
* @version $Id: //open/mondrian-release/3.2/src/main/mondrian/spi/impl/SqlStreamDialect.java#1 $
* @since Mar 23, 2009
*/
public class SqlStreamDialect extends LucidDbDialect {
public static final JdbcDialectFactory FACTORY =
new JdbcDialectFactory(
SqlStreamDialect.class,
DatabaseProduct.SQLSTREAM);
/**
* Creates a SqlStreamDialect.
*
* @param connection Connection
*/
public SqlStreamDialect(Connection connection) throws SQLException {
super(connection);
}
}
// End SqlStreamDialect.java
|