Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.52 KB

README.md

File metadata and controls

27 lines (19 loc) · 1.52 KB

kwery

Kwery makes it simple to generate, schedule, view and email business reports from datasources using SQL.

What is the problem that Kwery solves?

All businesses have a need of generating reports from data sources at a particular frequency - hourly, daily, weekly etc and email these reports. Kwery makes this a breeze and self-serve.

Getting Started

  1. Download the jar.
  2. Run the jar java -jar kwery.jar.
  3. Go to browser and load localhost:8080.

For more information see the Kwery documentation and follow the simple setup process.

Kwery comes packaged with all the components needed to run. The only system requirement is the availability of Java 8 runtime.

Kwery's database

Kwery uses Apache Derby as it's database.

To peek at the database, you can use ij utility. Since Kwery uses Derby in embedded mode, at a time, only one application can access the database. Hence, you need to shutdown Kwery if you want to access Kwery's database through ij.

Accessing Kwery's database through ij:

  1. Go the the directory where you are running Kwery.
  2. Ensure that there is a directory called kwery_db.
  3. Start ij.
  4. Run connect 'jdbc:derby:kwery_db';.

Please ensure you know what you are doing, you might end up deleting data inadvertantly and prevent Kwery for starting again.