Update your _config.yml
to define your data sources with your SQLite database.
...
sqlite:
- data: customers
file: *db
query: SELECT * from Customers
Then, you can use the site.data
attributes accordingly:
{{ site.data.customers | jsonify }}