Embedded Databases with SQLite
Store structured, queryable data in your Electron app using an embedded SQLite database, going beyond key-value storage and raw files.
When Files Are Not Enough
Key-value storage and flat files work for small data. For relational, queryable data, an embedded database like SQLite is the right tool.
Why SQLite for Desktop
SQLite is serverless and stores everything in a single file. It ships inside your app, no installation needed by the user.
All lessons in this course
- Local Storage & IndexedDB
- File System Access
- Embedded Databases with SQLite