Skip to main content

Datasource Basics

Daigo works on top of data, but it doesn't act as a database or storage for your data. Therefore, you will need to store and prepare your data externally, either from a CSV file or a relational database.

Daigo supports certain file types and RDBMS(Relational Database Management System) or SQL databases

List of supported datasource:

  • CSV / TSV (Tab-separated values)
  • SQLITE
  • Postgres
  • MySQL
CSV reloading

Daigo does cache your CSV data locally using SQLITE and doesn't refresh it when you update the file. It means you need to manually reload the file. Live update will be provided in future release.