SQLite Is a Library of Congress Recommended Storage Format

whatisabcdefgh 123 points 29 comments May 06, 2026
sqlite.org · View on Hacker News

Discussion Highlights (9 comments)

alexpotato

I have always loved SQLite. I have also heard that some firms ban its use. Why? Because it makes it SO easy to set up a database for your app that you end up with a super critical component of your application that looks exactly like a file. A file that can have any extension. And that file can be copied around to other servers. Even if there is PII in that file. Multiply this times the number of applications in your firm and you can see how this could get a little nuts. DevOps and DBA teams would prefer that the database be a big, heavy iron thing that is very obviously a database server. And when you connect to it, that's also very obvious etc etc. I still love SQLite though.

srcreigh

2026 recommended storage formats: https://www.loc.gov/preservation/resources/rfs/data.html

akihitot

For public-sector data preservation, it may be one of the best options. The specification is publicly available - It is widely adopted - It is likely to remain readable in the future - It has little dependency on specific operating systems or services - It carries low patent risk From the perspective of long-term continuity, avoiding dependence on any particular company or service is extremely important.

ray_v

It's so funny, because I was JUST telling a colleague of mine - another librarian - this exact fact about sqlite!

rmunn

> As of this writing (2018-05-29) ... So this news is nearly <del>six</del> EIGHT years old. But I didn't happen to know about it until now, so that's not a complaint at all; rather, this is a thank-you for posting it. (Thanks for the correction. Brief brain malfunction in the math department there).

tombert

On a recent project I have needed to use exFAT. exFAT is terrible for a number of reasons, but in my case the thing I had to deal with was the lack of journaling, which had the possibility to corrupt files if there were a power interruption or something. I initially was writing a series of files and doing some quasi-append-only things with new files and compacting the old one to sort of reinvent journaling. What I did more or less worked but it was very ad hoc and bad and was probably hiding a lot of bugs I would eventually have to fix later. And then I remembered SQLite. I realized that ACID was probably safe enough for my needs, and then all the hard parts I was reinventing were probably faster and less likely to break if I used something thoroughly audited and tested, so I reworked everything I was doing to SQLite and it worked fine. I wish exFAT would die in a fire and a journaling filesystem would replace it as the "one filesystem you can use everywhere", but until it does I'm grateful SQLite exists.

faangguyindia

I went from thinking “SQLite is a toy product, not reliable for real data" to "lets use SQLite for almost everything" SQLite is very good if you can fit into the single writer, multiple readers pattern; you'll never lose data if you use the correct settings, which takes a minute of Google search to figure out. Today, most of my apps are simply go binary + SQLite + systemd service file. I've yet to lose data. Performance is great and plenty for most apps

ksamantha

个人使用,我是真的超喜欢SQLite

afshinmeh

I love SQLite and thanks for sharing it but there should be a "(2018)" at the end in the title: > As of this writing (2018-05-29) the only other recommended storage formats for datasets are XML, JSON, and CSV.

Semantic search powered by Rivestack pgvector
8,303 stories · 78,303 chunks indexed