We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://duckdb.org/docs/data/json/sql_to_and_from_json.html supports wonderful constructs like
COPY (SELECT 42 AS a, 'hello' AS b) TO 'query.json'
and others like https://duckdb.org/docs/sql/statements/copy.html#copy--
After outputting to such files can do: SELECT * FROM glob('*'); to list em;
SELECT * FROM glob('*');
copyFileToBuffer to load them into JS and offer for download to users.
We can pattern match whether there seems to be a copy statement and run glob(*) before/after to get a diff of files to offer to download
Algorithm:
Followups:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://duckdb.org/docs/data/json/sql_to_and_from_json.html supports wonderful constructs like
COPY (SELECT 42 AS a, 'hello' AS b) TO 'query.json'
and others like https://duckdb.org/docs/sql/statements/copy.html#copy--
After outputting to such files can do:
SELECT * FROM glob('*');
to list em;copyFileToBuffer to load them into JS and offer for download to users.
We can pattern match whether there seems to be a copy statement and run glob(*) before/after to get a diff of files to offer to download
Algorithm:
Followups:
The text was updated successfully, but these errors were encountered: