HHH-3461 - Enhance DialectFactory to support Sybase Adaptive Server Anywhere

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17514 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2009-09-15 12:33:28 +00:00
parent 599ffd7992
commit d2d3568323
2 changed files with 15 additions and 12 deletions

View File

@ -26,15 +26,14 @@
package org.hibernate.dialect; package org.hibernate.dialect;
/** /**
* SybaseDialect is being deprecated. * This dialect is being deprecated; it had been used both as the base class
* * for TransactSQL-based dialects as well as the physical dialect for handling
* AbstractTransactSQLDialect should be used as a base * Sybase. Those functions have now been split.
* class for Sybase and MS SQL Server dialects. * {@link AbstractTransactSQLDialect} should be used as the base class for
* TransactSQL-based dialects.
* *
* @author Gail Badner * @author Gail Badner
* @deprecated SybaseASE15Dialect or SQLServerDialect should be * @deprecated use {@link SybaseASE15Dialect} or {@link SQLServerDialect} instead.
* used instead.
*/ */
public class SybaseDialect extends AbstractTransactSQLDialect { public class SybaseDialect extends AbstractTransactSQLDialect {
} }

View File

@ -1,10 +1,10 @@
/* /*
* Hibernate, Relational Persistence for Idiomatic Java * Hibernate, Relational Persistence for Idiomatic Java
* *
* Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as * Copyright (c) 2009 by Red Hat Inc and/or its affiliates or by
* indicated by the @author tags or express copyright attribution * third-party contributors as indicated by either @author tags or express
* statements applied by the authors. All third-party contributions are * copyright attribution statements applied by the authors. All
* distributed under license by Red Hat Middleware LLC. * third-party contributions are distributed under license by Red Hat Inc.
* *
* This copyrighted material is made available to anyone wishing to use, modify, * This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU * copy, or redistribute it subject to the terms and conditions of the GNU
@ -20,7 +20,6 @@
* Free Software Foundation, Inc. * Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor * 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA * Boston, MA 02110-1301 USA
*
*/ */
package org.hibernate.dialect.resolver; package org.hibernate.dialect.resolver;
@ -44,6 +43,7 @@ import org.hibernate.dialect.DB2Dialect;
import org.hibernate.dialect.Oracle10gDialect; import org.hibernate.dialect.Oracle10gDialect;
import org.hibernate.dialect.Oracle9iDialect; import org.hibernate.dialect.Oracle9iDialect;
import org.hibernate.dialect.Oracle8iDialect; import org.hibernate.dialect.Oracle8iDialect;
import org.hibernate.dialect.SybaseAnywhereDialect;
/** /**
* The standard Hibernate resolver. * The standard Hibernate resolver.
@ -89,6 +89,10 @@ public class StandardDialectResolver extends AbstractDialectResolver{
return new SybaseDialect(); return new SybaseDialect();
} }
if ( databaseName.startsWith( "Adaptive Server Anywhere" ) ) {
return new SybaseAnywhereDialect();
}
if ( "Informix Dynamic Server".equals( databaseName ) ) { if ( "Informix Dynamic Server".equals( databaseName ) ) {
return new InformixDialect(); return new InformixDialect();
} }