Table of Contents

ComboStrap Analytics - Sqlite Database

About

All ComboStrap data are stored in a Sqlite Database that you can query online

Databases

Combo

The database schema has the following tables:

Depending on your history with our plugins, its name may be:

Combo Secondary

The secondary database contains data that can be lost without loss of service such as:

The secondary database contains the following tables:

File Location

The database are stored at DOKUWIKI_HOME/data/meta/.

Configuration

If you have a high traffic, we recommend to use the write-ahead log to reduce blocking. By default, Sqlite uses the old traditional journal.

Steps:

select sqlite_version();
PRAGMA journal_mode=WAL;
PRAGMA journal_mode;