/*
// 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) 2008-2009 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.spi.impl;
import java.util.List;
import java.sql.Connection;
import java.sql.SQLException;
/**
* Implementation of {@link mondrian.spi.Dialect} for the Microsoft SQL Server
* database.
*
* @author jhyde
* @version $Id: //open/mondrian-release/3.2/src/main/mondrian/spi/impl/MicrosoftSqlServerDialect.java#1 $
* @since Nov 23, 2008
*/
public class MicrosoftSqlServerDialect extends JdbcDialectImpl {
public static final JdbcDialectFactory FACTORY =
new JdbcDialectFactory(
MicrosoftSqlServerDialect.class,
DatabaseProduct.MSSQL);
/**
* Creates a MicrosoftSqlServerDialect.
*
* @param connection Connection
*/
public MicrosoftSqlServerDialect(Connection connection) throws SQLException
{
super(connection);
}
public String generateInline(
List<String> columnNames,
List<String> columnTypes,
List<String[]> valueList)
{
return generateInlineGeneric(
columnNames, columnTypes, valueList, null, false);
}
}
// End MicrosoftSqlServerDialect.java
|