SQLite
SQLite requires no server setup and stores data in a local file. It is built into Python, so it works out of the box.Install
No extra packages needed — SQLite is built into Python.Quick Start
Connection Strings
| Path Type | Connection String | Description |
|---|---|---|
| Relative | sqlite:///memori.db | File in current directory |
| Absolute | sqlite:////home/user/data/memori.db | Absolute path (four slashes) |
| In-Memory | sqlite:///:memory: | Temporary, lost on exit |