Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL Exception occured: ERROR: column "waiting" does not exist #20

Open
vsbace opened this issue Jan 31, 2023 · 3 comments
Open

SQL Exception occured: ERROR: column "waiting" does not exist #20

vsbace opened this issue Jan 31, 2023 · 3 comments

Comments

@vsbace
Copy link

vsbace commented Jan 31, 2023

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

@vsbace
Copy link
Author

vsbace commented Jan 31, 2023

I have installed extensions:
image

@lex-sey
Copy link

lex-sey commented Feb 4, 2023

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);
}
}

@vsbace
Copy link
Author

vsbace commented Feb 6, 2023

Hi,

Thank you very much.
I did all recommendations and compile JAR archive in a separate branch.
All works is correct!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants