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

highfive.model.PKColumn Maven / Gradle / Ivy

Go to download

HighFive reads the data in the tables of a database schema and hashes it all with the aim of comparing it to a destination database, where this data has been migrated. It only succeeds if all data fields of all data rows of all (or selected) tables in both schemas produce the exact same SHA-1 hash value. It currently supports the Oracle, DB2 LUW, PostgreSQL, SQL Server, MySQL and MariaDB databases.

The newest version!
package highfive.model;

public class PKColumn {

  private int position;
  private String canonicalName;

  public PKColumn(int position, String canonicalName) {
    this.position = position;
    this.canonicalName = canonicalName;
  }

  public int getPosition() {
    return position;
  }

  public String getCanonicalName() {
    return canonicalName;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy