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
Rows are currently stored on disk in this format:
[1, "Simon"] [2, "Cleo"]
You have to consult the accompanying metadata JSON file to find out what the column names are.
A command that streams out one of these dumps as newline separated objects with the column names as keys would be useful.
The text was updated successfully, but these errors were encountered:
Potential design:
sqlite-diffable objects data/rows.ndjson
This would look for column info in data/rows.metadata.json.
data/rows.metadata.json
It would stream newline delimited output to standard out.
-o filename could save to disk instead.
-o filename
An option to write it out as a JSON array of objects would be useful too - maybe called --array.
--array
Sorry, something went wrong.
d8f071b
Documentation: https://github.com/simonw/sqlite-diffable/blob/d8f071b3ff41147029d3a8c674509aef70c1241c/README.md#converting-to-json-objects
Tests for new objects command, refs #7
75073f3
Release 0.5
9a6d64d
Refs #7
No branches or pull requests
Rows are currently stored on disk in this format:
You have to consult the accompanying metadata JSON file to find out what the column names are.
A command that streams out one of these dumps as newline separated objects with the column names as keys would be useful.
The text was updated successfully, but these errors were encountered: