It locks you to postgres. You donât necessarily have full control over postgres unless you are using your own instance / service, but oftentimes you might need to connect to an external one. SQLite gives you a local option.
Also what do you even mean with âdoes it store passwords?â A password is just a TEXT
or a BLOB
if you are feeling charitable and SQLite does support those since forever. If you can store âhello worldâ you can store a password (just⌠donât do it in plaintext, but storage is different from encryption).
lime_red@lemmy.world â¨4⊠â¨weeks⊠ago
Sqlite shouldnât lock for read, so unless you are writing something at each access, you can have thousands of concurrent reads. The Sqlite website spells this out, and lists its own self as the proof.
This would mean you could not write logs to the database, youâd have to do it the unixy way and put logs in a text file.