dyedgreen / deno-sqlite

Deno SQLite module
https://deno.land/x/sqlite
MIT License
409 stars 36 forks source link

What are the consequences of using this without File Locking? #233

Closed frou closed 1 year ago

frou commented 1 year ago

Can the database possibly become corrupted if multiple processes are modifying it?

dyedgreen commented 1 year ago

Yes. This module will be have in the same way as eg if you used SQLite from C, and just serializing the database and then writing this to file offers no special guarantees.