problem: reserved words not quoted in dump output version: 3.7.11 file: shell.c line: 1308 example:
create table "group" as select 1;
.dump
outputs:
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE "group"("1");
INSERT INTO group VALUES(1);
COMMIT;
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

