ThingieQuery: a SQL plugin for Excel
thingiequery.com
ThingieQuery: a SQL plugin for Excel
1–10 of 65 posts
Re: ThingieQuery: a SQL plugin for Excel
#2(Also: a closed source extension for a proprietary product on HN? Is it 1st April somewhere in the world!?)
Re: ThingieQuery: a SQL plugin for Excel
#3Re: ThingieQuery: a SQL plugin for Excel
#4Can't you already do this fairly easily with VBScript and ADO/DAO/whatever it's called? That said, it's probably not a good idea to (further) encourage the relational DB paradigm within a spreadsheet! (Also: a closed source extension for a proprietary product on HN? Is it 1st April somewhere in the world!?)
Re: ThingieQuery: a SQL plugin for Excel
#5Can't you already do this fairly easily with VBScript and ADO/DAO/whatever it's called? That said, it's probably not a good idea to (further) encourage the relational DB paradigm within a spreadsheet! (Also: a closed source extension for a proprietary product on HN? Is it 1st April somewhere in the world!?)
There's no simple "this workbook" connection that I'm aware of. So you have to use external connections and Access flavoured SQL to a named file and it all becomes brittle & ugly.
SQLite -- plus, if you need it, some open source GUI -- and you are done. No pain of bending Excel to do what you want; none of the horrors of Access and its cludgy-flavoured SQL. If you really need it ultimately in Excel, I'm sure there's an ODBC driver you can use to get a view on the data.
Re: ThingieQuery: a SQL plugin for Excel
#6I'm banging my head against Excel, wishing for SQL right now! But I could never go to my boss and ask for a purchase order for something called ThingieQuery. Give it a more bland gray name and make a massively expensive corporate site license available, and I think you're onto a winner.
Re: ThingieQuery: a SQL plugin for Excel
#7Re: ThingieQuery: a SQL plugin for Excel
#8Can't you already do this fairly easily with VBScript and ADO/DAO/whatever it's called? That said, it's probably not a good idea to (further) encourage the relational DB paradigm within a spreadsheet! (Also: a closed source extension for a proprietary product on HN? Is it 1st April somewhere in the world!?)
Re: ThingieQuery: a SQL plugin for Excel
#9Earlier quoted context omitted.
There's no simple "this workbook" connection that I'm aware of. So you have to use external connections and Access flavoured SQL to a named file and it all becomes brittle & ugly.
In my view, if you're at the point where you need to use the relational model with your data, you shouldn't be using Excel anyway. I realise it's "easy" and the go-to software for such things for corporate-types the world over, but that doesn't make it right. SQLite -- plus, if you need it, some open source GUI -- and you are done. No pain of bending Excel to do what you want; none of the horrors of Access and its cl…