Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Introduce target database property value "HANA" for SAP HANA Database
It should be possible to specify the HANAPlatform in the persistence
unit properties by setting the property "eclipselink.target-database" to
"HANA".

Bug 401509

Signed-off-by: Sabine Heider <sabine.heider@sap.com>
  • Loading branch information
sabineheider committed Feb 22, 2013
1 parent dd0ef56 commit 8a41bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -35,6 +35,7 @@ public class TargetDatabase {
public static final String DB2Mainframe = "DB2Mainframe";
public static final String DBase = "DBase";
public static final String Derby = "Derby";
public static final String HANA = "HANA";
public static final String HSQL = "HSQL";
public static final String Informix = "Informix";
public static final String JavaDB = "JavaDB";
Expand Down
Expand Up @@ -512,6 +512,7 @@ protected static class TargetDatabaseProp extends Prop {
{TargetDatabase.DB2, pcg + "DB2Platform"},
{TargetDatabase.DBase, pcg + "DBasePlatform"},
{TargetDatabase.Derby, pcg + "DerbyPlatform"},
{TargetDatabase.HANA, pcg + "HANAPlatform"},
{TargetDatabase.HSQL, pcg + "HSQLPlatform"},
{TargetDatabase.Informix, pcg + "InformixPlatform"},
{TargetDatabase.JavaDB, pcg + "JavaDBPlatform"},
Expand Down

0 comments on commit 8a41bdb

Please sign in to comment.