Congrats. Looks like it will be useful for plenty of folks. Can you outline how it compares with e.g. NocoDB [0] and others mentioned in another comment [1]?
As for "getting started" speed and general data tinkering, I find little beats Gnumeric -> CSV -> SQLite query [2] although I appreciate that solo developers aren't your target market :)
Can Retool Database be self-hosted stand-alone without Retool? I can see using this as a replacement for excel on some things.
Check out: NocoDB ( https://github.com/nocodb/nocodb ) - works w/ MySQL, PostgreSQL, SQL Server, SQLite, MariaDB Baserow ( https://gitlab.com/bramw/baserow ) - PostgreSQL based APITable ( https://github.com/apitable/apitable ) - MySQL based
thanks, I've been looking at all the spreadsheet-over-a-database projects i can find, and hadn't discovered APITable yet! I have a very specific requirement (app where I want a few views to be collaborative spreadsheets and the rest more freeform html based pages reading from the same tables) and so far none of the popular projects has been quite suitable. (basetool might have but it's dead :()
You'll see a performance benefit way before 100k rows depending on the size of each row, especially with sorting. It might save you guys a ton of CPU hosting wise, depending on how this all works, to track slow queries and auto add indexes. Way worth the write overhead in most cases.
It’s likely that most of their customers would only have a few hundred or thousand rows where indexing may not actually matter after all. Otherwise I’m sure they would’ve prioritized it.
huh? what about joins? surely your customers are doing joins. a few thousand times a few thousand is >> 1 million.