This is a fork of the H2 database project, originally created by the H2 Group. It is a contribution according to the
Eclipse Public License, Version 1.0, section 3.

It is based on the source code of the version 1.4.199 released on 2019-03-13.

The goal of this fork is to enable a Java application to use both old H2 databases with format 1 and newer databases
with format 3. Since different versions of the H2 JDBC driver need to be registered simultaneously, the following
adjustments were made to prevent conflicts when using an up-to-date H2 database driver from official sources to access
format 3 databases, and this 1.4.199 driver to access format 1 databases:

* the JDBC driver accepts JDBC URLs starting with jdbc:h2v1_4_199: (instead of jdbc:h2:),
* the Java package paths is org.h2v1_4_199.* (instead of org.h2.*),
* folders where renamed to match the changed package paths,
* the Maven groupId and artifactId have been changed.

The intended use of this fork is within the application test.guide, which is distributed by tracetronic. This
application uses H2 databases as a data source to provide data for PDF exports via the Eclipse BIRT Report Engine.
Legacy report designs use H2 databases in format 1, whereas up-to-date designs require format 3 databases.

The driver may also be used in Eclipser BIRT Report Designer if it is necessary to make adjustments to legacy report
designs and access to data sources is required for this purpose. However, it is not intended for use outside the
context of generating PDFs using Eclipse BIRT within test.guide.