I created some sqlite tables schema using python.
When I use the sqlite3 client and issue the .schema command, I can see the output is pre-formated as in the SQL source file I used as argument for the executescript() function.
Is there any method I could use to format the outputof the .schema command?
In the latest version ( 3.13.0 ) , you have
>sqlite3 test.dat
SQLite version 3.13.0 2016-05-18 10:57:30
sqlite> create table test ( a integer,b integer, c integer,d float,e text, f primary key);
sqlite> .schema
CREATE TABLE test ( a integer,b integer, c integer,d float,e text, f primary key);
sqlite> .schema --indent
CREATE TABLE test(
  a integer,
  b integer,
  c integer,
  d float,
  e text,
  f primary key
);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With