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

com.github.mengweijin.flyway.database.dm.DmSqlScriptExecutor Maven / Gradle / Ivy

package com.github.mengweijin.flyway.database.dm;

import org.flywaydb.core.internal.callback.CallbackExecutor;
import org.flywaydb.core.internal.jdbc.JdbcTemplate;
import org.flywaydb.core.internal.jdbc.StatementInterceptor;
import org.flywaydb.core.internal.sqlscript.DefaultSqlScriptExecutor;

public class DmSqlScriptExecutor extends DefaultSqlScriptExecutor {

    public DmSqlScriptExecutor(JdbcTemplate jdbcTemplate,
                               CallbackExecutor callbackExecutor,
                               boolean undo,
                               boolean batch,
                               boolean outputQueryResults,
                               StatementInterceptor statementInterceptor) {
        super(jdbcTemplate, callbackExecutor, undo, batch, outputQueryResults, statementInterceptor);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy