All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.sqlhelper.dialect.scriptfile.SQLServerSqlScriptParser Maven / Gradle / Ivy

package com.jn.sqlhelper.dialect.scriptfile;

import com.jn.sqlhelper.common.sql.sqlscript.PlainSqlScriptParser;
import com.jn.sqlhelper.common.sql.sqlscript.PlainSqlStatementBuilder;
import com.jn.sqlhelper.dialect.DialectNames;

public class SQLServerSqlScriptParser extends PlainSqlScriptParser {
    @Override
    public String getName() {
        return DialectNames.SQLSERVER;
    }

    @Override
    protected PlainSqlStatementBuilder newSqlStatementBuilder() {
        return new SQLServerSqlStatementBuilder();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy