The directory contains the Hibernate dialect for LINTER RDBMS.
To use Hibernate in the application it is necessary to compile the package for the corresponding Hibernate version, and link it and Linter JDBC driver to the application.
1.	Correspondence between dialect package versions and Hibernate versions:

Hibernate version: 4.0 - 4.3 (or later)
Dialect version: linter_hibernate4
Directory: v4

Hibernate version: 3.6.0 - 3.6.9 
Dialect version: linter_hibernate3.6
Directory: v3.6

Hibernate version: 3.0.3 - 3.5.6 
Dialect version: linter_hibernate3
Directory: v3

2.	Package build:
To build the dialect package it is required to choose the corresponding directory and issue one of the following commands:
-	mvn clean package (the dialect will be compiled to the jar-file in target directory)
-	mvn clean install (the dialect will be installed into the Maven repository)

It is allowed to edit pom.xml file in the corresponding directory to indicate precise Hibernate version.
Example:
<dependencies>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-core</artifactId>
      <version>4.0.0</version>
    </dependency> 
  </dependencies>
Other variants of dialect usage are possible (direct connection to the project, built-in Hibernate assembly)
3.	Connecting to LINTER RDBMS.
If the dialect package is installed into the Maven repository, the following dependency should be added to pom.xml file:
      <dependencies>
          <dependency>
              <groupId>ru.relex.lintersql</groupId>
              <artifactId>linter-hibernate4</artifactId>
              <version>1.0.1</version>
          </dependency>
      </dependencies>

To provide access to Linter RDBMS, the connection parameters are required.
Example:
      <properties>
          <db.dialect>org.hibernate.dialect.LinterDialect</db.dialect>
          <jdbc.driver>com.relx.jdbc.LinterDriver</jdbc.driver>
          <jdbc.url>jdbc:linter:linapid:localhost:1070:local;emptyBlobAsNull=true</jdbc.url>
          <jdbc.user>SYSTEM</jdbc.user>
          <jdbc.pass>MANAGER</jdbc.pass>
          <jdbc.isolation/>
      </properties>

To access the Linter RDBMS, linjdbc-1.4.jar or linjdbc-1.6.jar (Linter JDBC driver) is required
