logoalt Hacker News

bambaxtoday at 10:06 AM1 replyview on HN

> SQLite is an embedded database

Yes, but that's not its main selling point. An SQLite database is also a single file, which makes it incredibly easy to replicate, backup, transfer, restore, etc.


Replies

mxeytoday at 10:13 AM

SQLite in WAL mode which you want for server apps is multiple files.

Files which you cannot just copy while your application is running if you want a correct backup.

show 1 reply