Hi,

It seems that .echo on shows certain commands but not all. For
example, 'create table' command is not shown. Is there a command to
show all the commands that are executed?


$ cat ./main.sql
#!/usr/bin/env bash

rm -f main.db
sqlite3 main.db <<EOF

.echo on
.schema
create table test (id integer primary key, value text);
.echo off

EOF

$  ./main.sql
.schema
.echo off

-- 
Regards,
Peng
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to