简体   繁体   中英

Exception while using closeOnCompletion()

Namaskaram,

I am using H2 database for my Java based Desktop POS (Point of Sale) application. I am getting the below exception, when I try to use the method closeOnCompletion() for my Statement and PreparedStatement objects.

Exception in thread "AWT-EventQueue-0" java.lang.AbstractMethodError: org.h2.jdbc.JdbcStatement.closeOnCompletion()V

Please help.

The default H2 jar file is currently not compiled for Java 7. Java 7 compatibility is disabled in the source code currently.

You can enable it yourself by compiling H2 yourself (using ./build.sh jar ).

Please note the current implementation of closeOnCompletion is a no-op.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM