Is there any SQLite command or third-party tool that allows database dumps to include column names in the INSERT INTO statements? Instead of INSERT INTO "MyTable" VALUES ('A', 'B'); I'd like to see INSERT INTO "MyTable" (Column1, Column2) VALUES ('A', 'B'); The .dump command in SQLite only offers the first version.
