You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i have a problem with connecting to PostgreSQL database instance 14 version with the next error:
SQL Exception occured: ERROR: column "waiting" does not exist
Position: 216
java.lang.NullPointerException
The text was updated successfully, but these errors were encountered:
before run .\gradlew.bat assembleDist
add files to PASH-Viewer-master\build\classes\main\org\ash\database
ASHDatabasePG14.class
ASHDatabasePG14ASH.class
as copy
ASHDatabasePG13.class
ASHDatabasePG13ASH.class
and add to PASH-Viewer-master\src\org\ash\gui\MainFrame.java
338
if (versionOracleDB.startsWith("13")) {
if(ASHsupport) {
this.database = new ASHDatabasePG13ASH(this.model);
} else {
this.database = new ASHDatabasePG13(this.model);
}
}
else if (versionOracleDB.startsWith("14")) {
if(ASHsupport) {
this.database = new ASHDatabasePG14ASH(this.model);
} else {
this.database = new ASHDatabasePG14(this.model);
}
}
Hi, i have a problem with connecting to PostgreSQL database instance 14 version with the next error:
SQL Exception occured: ERROR: column "waiting" does not exist
Position: 216
java.lang.NullPointerException
The text was updated successfully, but these errors were encountered: