Skip to content
This repository was archived by the owner on Dec 30, 2021. It is now read-only.

Accessing the database

Paul Tegelaar edited this page Feb 7, 2018 · 3 revisions

The default way of getting to your data is using the API. Liquid with a Swaggerized API you can access through https://localhost:9900. By defaut it uses a self-signed certificate, so you must accept the exception in your browser and you will be able to access it. You can also get at the database directly by logging in to the h2 console. This can be accessed through https://localhost:9900/liquid/console. You will get the following screen. The JDBC url should be jdbc:h2:./data/liquiddb, unless you moved the data directory off course. The user and password can be found in the application.properties file, the database uses the master password. After you log in, you can perform SQL queries directly throught the console. Information about the console and how it works can be found at http://www.h2database.com/html/main.html.

Clone this wiki locally