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

liquibase.statement.core.InsertOrUpdateStatement Maven / Gradle / Ivy

There is a newer version: 4.28.0
Show newest version
package liquibase.statement.core;

public class InsertOrUpdateStatement extends InsertStatement {
    private String primaryKey;


    public InsertOrUpdateStatement(String catalogName, String schemaName, String tableName, String primaryKey) {
        super(catalogName, schemaName, tableName);
        this.primaryKey = primaryKey ;
    }

    public String getPrimaryKey() {
        return primaryKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy