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

liquibase.ext.mssql.statement.DropStoredProcedureStatement Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package liquibase.ext.mssql.statement;

import liquibase.statement.AbstractSqlStatement;

public class DropStoredProcedureStatement extends AbstractSqlStatement {
    private String catalogName;
    private String schemaName;

    public DropStoredProcedureStatement(String catalogName, String schemaName) {
        this.catalogName = catalogName;
        this.schemaName = schemaName;
    }

    public String getCatalogName() {
        return catalogName;
    }

    public String getSchemaName() {
        return schemaName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy