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

highfive.exceptions.InvalidHashFileException 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.exceptions;

public class InvalidHashFileException extends Exception {

  private static final long serialVersionUID = 1L;

  public InvalidHashFileException(String message) {
    super(message);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy