View Revisions: Issue #693

Summary 0000693: Support property in dbimport/dbexport to turn off quoted delimiters during table creation
Revision 2012-07-03 20:04 by chenson
Description Support property in dbimport/dbexport to turn off quoted delimiters during table creation
Revision 2025-04-16 17:13 by elong
Description Support property in dbimport/dbexport to turn off quoted delimiters during table creation.

Command line option like --use-quoted-identifiers to turn on/off quoting of table and column names.
Revision 2012-07-03 20:04 by chenson
Steps To Reproduce
Revision 2025-04-16 17:13 by elong
Steps To Reproduce ./dbexport --format=sql mytest
CREATE TABLE "mytest"(
    "id" numeric(38) NOT NULL,
    "name" varchar(20),
    PRIMARY KEY ("id")
);
insert into "mytest" ("id", "name") values (1,'server is new');