how-to-store-sqlite-as-nosql-store
Installation
SKILL.md
How to store SQLite as NoSQL Store
SQLite is a very capable edge database that can store various shapes of data.
NoSQL databases are very popular due to the schema-less nature of storing of the data but it is totally possible to store these documents in SQLite.
SQLite actually has great JSON support and even supports JSONB.
Create the table
To store JSON documents we need to create a table to store the values as strings.