Top
Best
New

Posted by sqliteonline 1 day ago

Show HN: SQLite Online – 11 years of solo development, 11K daily users(sqliteonline.com)
444 points | 136 commentspage 2
talljohnson1234 13 hours ago|
This is a really nice tool, I use to practise my SQLite.
mmeoww 18 hours ago||
I think the design not that bad but that green disclaimer appears on the first visit is kinda too long and nobody wants to read that in a mobile even in PC, so it might be cartoonized for the user to better understand it :)
BinaryIgor 1 day ago||
How do you make money?
scottmcdot 22 hours ago||
Thanks for tool! I've been using this for conducting interviews.
boxerab 9 hours ago||
Молодец!
hoherd 1 day ago||
I immediately tried to run .schema and a syntax error was returned.
tuveson 22 hours ago|
I assume this is because sqliteonline is using the sqlite library, not running the literal sqlite command line application. Per item 7 in the faq (https://sqlite.org/faq.html), the way to get that info would be to run something like the following:

SELECT * FROM sqlite_schema WHERE type='table' ORDER BY name;

The website does seem to correctly return the names/schemas of whatever tables you've created if you run the command above, but the editor (incorrectly) adds red squigglies around the command, since I guess it doesn't realize this is allowed.

pdyc 1 day ago||
wow that's a lot of users, congratulations. It says sqliteonline but it seems you support other db's as well.
erickf1 1 day ago||
This reminds me a lot of RavenDB. I'm impressed.
dsamy 1 day ago||
Amazing that SQLite Online has survived solo for 11 years. What technical or business pivots have kept it alive (and relevant) across changing web stacks and user expectations?
foofoo12 1 day ago|
What is the WebRTC connection used for?
appcustodian2 1 day ago|
P2P “Share/Collaborate” mode: the UI text and toasts (“Share”, “Close connect”, “connected”, “No connected.”) plus e.rtc.user strongly suggest a feature where someone “hosts” a DB and others connect directly to run queries/see results live.
More comments...