HHH-2682 : H2 dialect auto-discovery support
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14047 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
d43a3d7d96
commit
dc43624359
|
@ -113,6 +113,7 @@ public class DialectFactory {
|
|||
static {
|
||||
// TODO : this is the stuff it'd be nice to move to a properties file or some other easily user-editable place
|
||||
MAPPERS.put( "HSQL Database Engine", new VersionInsensitiveMapper( "org.hibernate.dialect.HSQLDialect" ) );
|
||||
MAPPERS.put( "H2", new VersionInsensitiveMapper( "org.hibernate.dialect.H2Dialect" ) );
|
||||
MAPPERS.put( "DB2/NT", new VersionInsensitiveMapper( "org.hibernate.dialect.DB2Dialect" ) );
|
||||
MAPPERS.put( "DB2/LINUX", new VersionInsensitiveMapper( "org.hibernate.dialect.DB2Dialect" ) );
|
||||
MAPPERS.put( "MySQL", new VersionInsensitiveMapper( "org.hibernate.dialect.MySQLDialect" ) );
|
||||
|
|
Loading…
Reference in New Issue