Live data from Hacker News

Show HN: Outerbase Studio – Open-Source Database GUI

github.com

91–100 of 153 posts

Re: Show HN: Outerbase Studio – Open-Source Database GUI

#92
post #29

For years I've wondered why a general purpose, high quality, good UX, browser based DB browser has not existed. I've implemented 3 such (not general-purpose) browsers in my career. But I'd be really happy to stop doing that and use this instead. I would love to see a Firestore driver implemented (maybe I'll take a crack at it some day), as I'm stuck in GCP land for the time being.

I think it's because there's no business model in the pure "DB browser" product. People don't seem willing to pay enough for it to build a good business around it. Everyone I've seen either pivots to a Retool competitor or a BI tool. Source: I've tried it twice.

I think DB Browser is not a product but a feature. It is fairly challenging to monetize it. It can be an entry point for a developer's workflow, and then you can upsell something else.

Re: Show HN: Outerbase Studio – Open-Source Database GUI

#93
post #63
post #29

For years I've wondered why a general purpose, high quality, good UX, browser based DB browser has not existed. I've implemented 3 such (not general-purpose) browsers in my career. But I'd be really happy to stop doing that and use this instead. I would love to see a Firestore driver implemented (maybe I'll take a crack at it some day), as I'm stuck in GCP land for the time being.

dbeaver? it has dbeaver community edition, and supports tons of database.

[dead]

Re: Show HN: Outerbase Studio – Open-Source Database GUI

#94

Earlier quoted context omitted.

Still a valid counterargument. A good browser based DB GUI might just not exist because the existing desktop ones are so good already. I personally also vouch for DataGrip, a fantastic tool. No browser based tool is going to come close to the experience of an actual desktop app imo

> No browser based tool is going to come close to the experience of an actual desktop app imo Why?

Sandbox constraints. Windowing. Browser compatibility issues. Plugins and Integration compatibility.

Re: Show HN: Outerbase Studio – Open-Source Database GUI

#95
What I found invaluable is the use of Kate (yes the editor) SQL plugin. It can connect to MySQL/MariaDB, Postgres and others.

The main benefit is that you can organize your SQLs in files or even better in markdown files.

God knows how many times I had to retype the same or a very similar SQL in the past.

Re: Show HN: Outerbase Studio – Open-Source Database GUI

#97
post #29

For years I've wondered why a general purpose, high quality, good UX, browser based DB browser has not existed. I've implemented 3 such (not general-purpose) browsers in my career. But I'd be really happy to stop doing that and use this instead. I would love to see a Firestore driver implemented (maybe I'll take a crack at it some day), as I'm stuck in GCP land for the time being.

> browser based

For whatever reason, this is the main limiting factor, local software can already be really good, for example:

• DBeaver - pretty nice and lightweight local tool for a plethora of databases https://dbeaver.io/

• DataGrip - commercial product, but you'll feel right at home if you use other JetBrains products https://www.jetbrains.com/datagrip/

• HeidiSQL - haven't really used this myself but the version graph on the page is cool https://www.heidisql.com/

• DbVisualizer - really cool tool that helps you explore messy schemas https://www.dbvis.com/

• Jailer - something for exploring datasets, a bit niche, but can be useful https://wisser.github.io/Jailer/

There's also some solutions that are specific to certain databases, like:

• pgAdmin - for PostgreSQL https://www.pgadmin.org/

• MySQL Workbench - for MySQL/MariaDB, sometimes a bit buggy but I really like the reverse engineering and forward engineering functionality https://www.mysql.com/products/workbench/

• Adminer - one of the somewhat rare web based solutions for the likes of MySQL/MariaDB, actually pleasant to use as long as you use it securely, this I think is a good example of web based DB tools https://www.adminer.org/

(out of respect for my own sanity, not mentioning SQL Developer, even though it sort of works)

Post reply on HN