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 process can safely write to the same file, limbo takes an exclusive lock from the start: maintainers chose this to avoid the performance cost of cross-process synchronization.