Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ public JDBCConfigurationImpl(boolean derivations, boolean loadGlobals) {
"sqlserver", org.apache.openjpa.jdbc.sql.SQLServerDictionary.class.getName(),
"sybase", org.apache.openjpa.jdbc.sql.SybaseDictionary.class.getName(),
"maxdb", MaxDBDictionary.class.getName(),
"sqlanywhere", org.apache.openjpa.jdbc.sql.SQLAnywhereDictionary.class.getName(),
};
dbdictionaryPlugin.setAliases(aliases);
dbdictionaryPlugin.setInstantiatingGetter("getDBDictionaryInstance");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,9 @@ private static String dictionaryClassForString(String prod, JDBCConfiguration co
if (prod.indexOf("sapdb") != -1) {
return dbdictionaryPlugin.unalias("maxdb");
}
if (prod.indexOf("sqlanywhere") != -1) {
return dbdictionaryPlugin.unalias("sqlanywhere");
}
// test h2 in a special way, because there's a decent chance the string
// h2 could appear in the URL of another database
if (prod.indexOf("jdbc:h2:") != -1)
Expand Down
Loading