You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli.rst
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -805,12 +805,21 @@ You can insert binary data into a BLOB column by first encoding it using base64
805
805
Inserting newline-delimited JSON
806
806
--------------------------------
807
807
808
-
You can also import newline-delimited JSON using the ``--nl`` option. Since `Datasette <https://datasette.io/>`__ can export newline-delimited JSON, you can combine the two tools like so::
808
+
You can also import `newline-delimited JSON <http://ndjson.org/>`__ using the ``--nl`` option::
This also means you pipe ``sqlite-utils`` together to easily create a new SQLite database file containing the results of a SQL query against another database::
822
+
You can also pipe ``sqlite-utils`` together to create a new SQLite database file containing the results of a SQL query against another database::
814
823
815
824
$ sqlite-utils sf-trees.db \
816
825
"select TreeID, qAddress, Latitude, Longitude from Street_Tree_List" --nl \
0 commit comments