Show HN: Base, an SQLite database editor for macOS (menial.co.uk)

693 points by __bb ↗ HN
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 feedback or answer any questions.

72 comments

[ 2.8 ms ] story [ 82.7 ms ] thread
This looks great, installing now. I've been using DBeaver, but it's not optimized for SQLite. Common issue with DBeaver is having to refresh the global connection to see changes.

EDIT: Very minor nitpick but noticed I changed my icon to dark, but not taking effect. Still using light icon.

Happy Base user for almost ten years now. Hands down the best SQLite editor on macOS.
I was looking for something like this a few months ago and was having trouble surfacing anything. This looks nice. My work is pretty conservative on allowing me to use something like this, but I will definitely be noting it down for my next personal project where this would be helpful.
How have I never heard of this before? Been looking for a sleek, minimal SQLite client for more than a year now.
May I ask what you are using on the backend for verifying the web purchases? Is it a key, or online activation once downloaded?
What does this offer over sqlitebrowser? https://sqlitebrowser.org/
In my experience, DB Browser for SQLite keeps the connection open in a way where an application that accesses the database may throw a lock error. Maybe it can be configured, but I haven't had that issue with Base.
(comment deleted)
Why is it MacOS only though? Surely this can cross-compile for Linux and Windows perfectly fine?
Been looking for something like this, I also wish there was a way for multiple users to collaborate and interact with the same database.

Think like MySql Workbench but for multiple users, that would be incredible

Looks super nice. Congrats on the launch. Personally I use Harlequin, the TUI SQL tool, which works best for me. I don't really GUI for these kind of tools, but I can understand the value for some. Wishing you all the success with this new version.
Needed this for developing my Tauri app, been working great.
if I purchase, am I required to scream "ALL YOUR BASE ARE BELONG TO US !!" ?
> without it turning into a massive IDE-style app

Is that another way of saying you don't want to make MS Access?

I still use Access quite a bit and I think it's pretty great. It's too bad that nothing like that exists for modern databases.

I kinda wish someone would take SQLite and make something like Access on top of it.

Many years ago, there was a project that tried to do just that using Tcl/Tk, which seems like a fine choice - Tcl is very simple and easy to understand even for on-programmers while its deficiencies aren't really important in this niche, and Tk is one of the easiest UI frameworks around to use. Unfortunately it petered out and I can't even remember the name anymore...

I've just tried it out, looks nice!

I've been using TablePlus a lot, but there are some SQLite-specific features I'd really like to have in an app:

- Foreign keys enabled by default, so I don't have to remember to enable that in every session.

- Support for loading extensions automatically. I'm using sqlite-vec for example. Right now, browsing virtual tables for that just doesn't show that much, and executing a query just results in "no such module: vec0"

I'll keep an eye on the project. :-)

The goal of this app is to provide a comfortable native GUI for SQLite, without it turning into a massive IDE-style app.

As an aside, feature bloat is a massive problem with macOS database tools.

I'd happily pay for something basic, native, and pretty like Sequel Ace†, but all of the other options are Swiss Army knives for power users who need to tweak every little thing. I just want to do some queries.

† I'd pay for Sequel Ace, too, if it didn't crash every time I close a tab.

> Create and modify tables with ease using Base's visual table editor. No need to write complex CREATE or ALTER statements.

I'm trying to understand who your target audience is? Normally, I think of SQLite as something that only a programmer would use. (And thus these kind of statements happen within an application.)

What kind of use cases are you handling where someone is manually creating / changing a schema?

> Import data from CSV and SQL dump files. Export your results to SQL, delimited text, JSON, and Excel formats.

IE, who's using SQLite in this way, and what are they using it for?

I'm a programmer and I barely understand how to use SQL so this would be useful for me
I've been using Base for [checks... considers retirement] about 15 years!? It's ALWAYS been great, AND has improved over time.
I bought your app in 2010 and use it regularly. Thanks for making it!
It would be amazing if it could display UUIDs. SQlite doesn't support them natively, but many people store them as binary blobs.

Jetbrains products realize that these binary values are UUIDs and let me edit them easily.

Thank you for offering a purchase option outside of the MAS. It sucks that Apple is trying to force everyone to identify themselves to install apps and some of us prefer not having an Apple ID.
Wait doesnt DBeaver work on MacOS aswell?
Can somebody recommend a similar tool that works with DuckDB files?
`duckdb —-ui` is quite powerful, although edits still have to happen through written queries.
It would be super duper cool if it can connect to DuckDB as well.