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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A login window will popup. The login infos are:

- Saved Settings: `Generic H2 (Server)`
- Driver Class: `org.h2.Driver`
- JDBC URL: `jdbc:h2:tcp://localhost/./books.h2`
- JDBC URL: `jdbc:h2:tcp://localhost/./books`
- User Name: `sa`
- Password: `test`

Expand Down
Binary file removed h2/books.h2.mv.db
Binary file not shown.
Binary file added h2/books.mv.db
Binary file not shown.
Binary file renamed h2/h2-2.1.214.jar → h2/h2-2.2.220.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion h2/h2.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@java -cp "h2-2.1.214.jar;%H2DRIVERS%;%CLASSPATH%" org.h2.tools.Console %*
@java -cp "h2-2.2.220.jar;%H2DRIVERS%;%CLASSPATH%" org.h2.tools.Console %*
@if errorlevel 1 pause
2 changes: 1 addition & 1 deletion h2/h2.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
dir=$(dirname "$0")
java -cp "$dir/h2-2.1.214.jar:$H2DRIVERS:$CLASSPATH" org.h2.tools.Console "$@"
java -cp "$dir/h2-2.2.220.jar:$H2DRIVERS:$CLASSPATH" org.h2.tools.Console "$@"
2 changes: 1 addition & 1 deletion h2/h2w.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@start javaw -cp "h2-2.1.214.jar;%H2DRIVERS%;%CLASSPATH%" org.h2.tools.Console %*
@start javaw -cp "h2-2.2.220.jar;%H2DRIVERS%;%CLASSPATH%" org.h2.tools.Console %*
@if errorlevel 1 pause
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ontop.version>5.0.2</ontop.version>
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
<logback.version>1.2.9</logback.version>
<h2.version>2.1.214</h2.version>
<h2.version>2.2.220</h2.version>
<rdf4j.version>4.1.3</rdf4j.version>

<!-- JDK version -->
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/example/books/exampleBooks.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdbc.url = jdbc:h2:tcp://localhost/./books.h2
jdbc.url = jdbc:h2:tcp://localhost/./books
jdbc.user = sa
jdbc.password = test
jdbc.driver = org.h2.Driver