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

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

Go to download

Database dialects ( supports pagination, UrlParser, SqlStatementParser, WallFilter, BatchExecutor for Test) based Java, you can use it in any ORM framework.

There is a newer version: 5.0.7
Show newest version
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 DB2SqlScriptParser extends PlainSqlScriptParser {
    @Override
    public String getName() {
        return DialectNames.DB2;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy