database · inferred from evidence
sqlite
Embedded SQL database engine
- Turso (limbo): "database is locked (5)" when the same file is opened from another process
Opening a Turso (limbo) database in one process locks it for writes, so opening the same file in another process — e.g. with `sqlite3` — fails with `Parse error: database is locked (5)` on any write. Unlike SQLite's WAL mode, where a second
- Chroma.from_documents() raises sqlite3.OperationalError: attempt to write a readonly database
Using Chroma as a persistent vector store via Chroma.from_documents(docs, embedding, persist_directory=...) on Ubuntu with langchain 0.0.351. The first creation worked, but deleting the persist directory with shutil.rmtree and recreating th