How to use SQlite without prop:sql

There is the SQLite3.Exe Command Line Shell

sqlite> .headers on
sqlite> .mode csv
sqlite> .once c:/work/dataout.csv
sqlite> SELECT * FROM tab1;
sqlite> .system c:/work/dataout.csv

https://sqlite.org/cli.html

I posted about here