H2: Difference between revisions
Jump to navigation
Jump to search
Line 23: | Line 23: | ||
./h2.sh | ./h2.sh | ||
This will start | This will start a "test" database and make H2 console available on port 8082: http://localhost:8082 | ||
The "test" database will be available as "jdbc:h2:tcp://localhost/~/test", authenticating with a "sa" user and an empty password (""). | |||
==H2 DDL Operations== | ==H2 DDL Operations== |
Revision as of 18:18, 25 September 2017
External
Internal
Overview
Installation
cd $RUNTIME_DIR unzip .../h2-2017-06-10.zip mv h2 h2-2017-06-10 ln -s ./h2-2017-06-10 h2
Operations
Run Database and H2 Console
cd $RUNTIME_DIR/h2/bin ./h2.sh
This will start a "test" database and make H2 console available on port 8082: http://localhost:8082
The "test" database will be available as "jdbc:h2:tcp://localhost/~/test", authenticating with a "sa" user and an empty password ("").