twoxfh
twoxfh
You might be able to get most of what you want with a database function which takes in a URL and post parameters then returns a JSON document which parsed...
It took me a second to understand the thought process, are you expecting sqliteviz to be a producer of data to roapi and then have one search interface? Or be...
I agree in that scenario I am not sure how you would standardize all the functions and operations across multiple platforms. If you pick JSON as the interchange format, sqljs...
I think I get it now, you want to http request flat JSON from a website through your browser, convert and feed the result javascript array to the sqliteviz table,...
Sqliteviz uses sql-js which has a pr for adding absurd-sql functionality https://github.com/sql-js/sql.js/pull/481.
> We reopen the database on each query execution in order to simplify working with temporary tables: > #53 Thank you. Possibly DROP TABLE IF EXISTS can used in that...
In my use, I currently have to attach databases on each query execution which also makes it hard for the multi-database object listing flashing on the side. I can only...
It’s not obvious user data is constantly exported and reimported on each execution which to me is a flaw in the implementation of the feature with mitigation’s noted above. I...
If SQL-js implements https://github.com/sql-js/sql.js/pull/481 it looks like we could store the main database on the memory file system and close/open the database without having to export and reimport. This would...
@lana-k csv export would be great, individual column export would help too for json documents which currently are too big for table columns. Not sure how to implement with all...