nowfound

Alternatives

Products that do what I made a tool to help manage SQLite databases on a VPS does

Hey everyone! It’s a single executable that you can run on your server using Docker, Systemd, or any other tool you prefer. It provides a simple user-friendly interface to manage all your SQLite databases. Inspired by PhpLiteAdmin, it features a snappy UI and offers power-user functionalities, ability to chat with your database using natural language via OpenAI api, and other features. It’s free to use, with an option for a one-time payment to unlock all features. You can find the demo at https://demo.litequeen.com/ It's early and there's much to add. Some features I think…

  1. 1OS

    We just launched Outerbase Studio, the open-source version of our core database offering. It works in your browser or as a desktop app and supports MySQL, PostgreSQL, and SQLite. What it does: • Connects to MySQL, PostgreSQL, and SQLite databases. • Spin up local databases directly through the UI, even if you don’t have one running. • Manage and query your data in a lightweight, intuitive interface. • Completely open source. Why we built it: We wanted to share the core Outerbase experience with the developer community as a free, open-source tool. It’s simple, fast, and removes the barriers…

    2024 · github.com

  2. 2BA

    I recently released v3 of Base, my SQLite editor for macOS. The goal of this app is to provide a comfortable native GUI for SQLite, without it turning into a massive IDE-style app. The coolest features are - That it can handle full altering of tables, which is quite finicky to do manually with SQLite. - It has a more detailed display of column constraints than most editors. Each constraint is shown as an icon if active, with full details available on clicking the icon. This update also adds support for attaching databases, which is a bit fiddly with macOS sandboxing. I'd love to hear any…

    2025 · menial.co.uk

  3. 3
    Outerbase298

    The interface for your database

    2023

  4. 4MN

    Hello HN! I've found my SQL knowledge to be lacking, so I made a project that uses SQLite as a backend. As it is intended for self-hosting I aim to make it easy to set up and maintain. Getting it up & running takes no more than a few commands (bar setting up a proxy such as nginx, which is out of scope). I've set up a "demo" site at https://forum.agreper.com/ if you want to try out the UI.

    2022 · github.com

  5. 5SO
  6. 6IW

    I wrote a relational database management system (RDBMS) (sqlite clone) from scratch in pure Python.

    2023 · github.com

  7. 7DC
  8. 8SA

    Hi, this has been a labor of love over the last few days =) Can't wait to hear you feedback and of course AMA!

    2023 · blog.airsequel.com

  9. 9DS

    Hello HN! I'm building mvsqlite, a distributed variant of SQLite with MVCC transactions, that runs on FoundationDB. It is a drop-in replacement that just needs an `LD_PRELOAD` for existing applications using SQLite. I made this because Blueboat (https://github.com/losfair/blueboat) needs a native SQL interface to persistent data. Apparently, just providing a transactional key-value store isn’t enough - it is more easy and efficient to build complex business logic on an SQL database, and it seems necessary to bring a self-hostable distributed SQL DB onto the platform.…

    2022 · github.com

  10. 10GI
  11. 11SE

    I have been working on SQL Explorer, an open source, Django-based reporting and query tool for (gulp!) almost ten years. It's a tool that fits just right for me and many others, and I love and use almost every day. Write SQL, share results, do some analysis, get insight. No surprises. A live demo instance is here (no login or anything required): https://demo.sqlexplorer.io/ And here's a fairly unprofessional, but very enthusiastic, video tour: https://sql-explorer.s3.amazonaws.com/Sql+Explorer+5.mp4 The UI is constrained enough that there's very little to learn,…

    2024 · github.com

  12. 12SS
  13. 13ES

    2024 · github.com

  14. 14SF

    Hey HN! We posted Rivet Actors here previously [1] as an open-source alternative to Cloudflare Durable Objects. Today we've released SQLite storage for actors (Apache 2.0). Every actor gets its own SQLite database. This means you can have millions of independent databases: one for each agent, tenant, user, or document. Useful for: - AI agents: per-agent DB for message history, state, embeddings - Multi-tenant SaaS: real per-tenant isolation, no RLS hacks - Collaborative documents: each document gets its own database with built-in multiplayer - Per-user databases: isolated, scales…

    Feb 2026 · github.com

  15. 15MD

    I've spent about the past 6 months or so working on what I think of as 'database as a service'. Essentially hosted Sqlite with CORS support so users can post from anywhere, and execute queries saved on the backend. One of the things I'm going for is a completely in browser development experience, so there's nothing to install, the user simply uses the UI to create and edit queries and admin their database. One of the most basic uses would be posting form data from a static HTML page: https://www.lite-engine.com/blog/post_form.html I've posted it here before and didn't get…

    2016

  16. 16SW
  17. 17ER

    Hi! As a big fan of SQLite, I always found the tooling to explore remote databases a bit lacking. Current solutions involve running an extra service in the remote host and exposing a port to access it. I built a small web app that can explore remote SQLite databases without having to run any service on the remote, you just need SSH. It works by sending sqlite3 CLI commands over a multiplexed SSH connection. The commands use the "-json" flag from the sqlite3 CLI. This basically turns the SSH connection into an JSON API for the remote SQLite database. The project is hosted on GitHub[0] and I…

    2022

  18. 18SA
  19. 19TS
  20. 20LD

    Over the last 12 months, in parallel to using Google BigQuery, I have built my own processing pipeline using SQLite and DuckDB. What amazes me is that it works surprisingly well and costs much less than using BigQuery. Roughly speaking, here's what I do: A SQLite database receives IoT sensor data via a very simple PHP function. I currently use the FlightPHP framework for this. The data is written to a table within the SQLite database (WAL mode activated) and states are updated by the machines using triggers. Example of a trigger CREATE TRIGGER message_added AFTER INSERT ON messages BEGIN…

    2023

  21. 21PP
  22. 22SH

    At JigsawStack.com, we are using Redis by Upstash to store and validate API keys among other datasets for speedy retrieval. As we scaled to more Asian markets and added replicated nodes, the cost started to shoot up while performance got a lot worse. I discovered hosting SQLite on Fly which was crazy fast & cheap with the full power of a relational database but difficult to use and scale without writing tons of code & devops. Then I found Turso as a managed service which is pretty cool but again got really expensive and had to manage a bunch of replications manually and pay per replications…

    2024 · dzero.dev

  23. 23PW

    Turn any SQL code block on your website into a runnable query editor with just a tag. Powered by DuckDB WASM running entirely in the browser – no backend needed. Perfect for documentation sites, tutorials, and blog posts. Features: • Full SQL analytics engine (DuckDB) running client-side • Syntax highlighting with live editing • One-click query execution (or Ctrl+Enter) • Works with any static site – just add the CDN script • Only 23KB minified, loads DuckDB on-demand • Dark/light theme support Try it: https://widget.pondpilot.io GitHub:…

    2025 · github.com

  24. 24

    Modern single-file SQLite admin studio for PHP 8.2+

    5d ago · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →