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

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

There is a newer version: 2.0.5
Show newest version
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;

/**
 * @author mengweijin
 */
@SuppressWarnings("SqlResolve")
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