into sqlite for conversions

Convert table into a SQLite database.

Signature

> into sqlite (file_name) --table_name

Parameters

  • file_name: Specify the filename to save the database to
  • --table_name {string}: Specify table name to store the data in

Input/output types:

inputoutput
anynothing

Examples

Convert ls entries into a SQLite database with 'main' as the table name

> ls | into sqlite my_ls.db

Convert ls entries into a SQLite database with 'my_table' as the table name

> ls | into sqlite my_ls.db -t my_table

Convert table literal into a SQLite database with 'main' as the table name

> [[name]; [-----] [someone] [=====] [somename] ['(((((']] | into sqlite filename.db

Convert a variety of values in table literal form into a SQLite database

> [one 2 5.2 six true 100mib 25sec] | into sqlite variety.db