Skip to content

Commit

Permalink
Update src/org/ash/gui/MainFrame.java
Browse files Browse the repository at this point in the history
20181026
  • Loading branch information
dbacvetkov committed Oct 26, 2018
1 parent dba40c8 commit bf8c38d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/org/ash/gui/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,11 @@ private void initializeBerkeleyDatabaseAndLoading() {
Boolean ASHsupport = model.getASHsupport();

if (versionOracleDB.startsWith("11")) {
this.database = new ASHDatabasePG10(this.model);
if(ASHsupport) {
this.database = new ASHDatabasePG10ASH(this.model);
} else {
this.database = new ASHDatabasePG10(this.model);
}
} else if (versionOracleDB.startsWith("10.")) {
if(ASHsupport) {
this.database = new ASHDatabasePG10ASH(this.model);
Expand Down

0 comments on commit bf8c38d

Please sign in to comment.