[Dbi-interbase-devel] Quoted Identifiers don't work?
Status: Beta
Brought to you by:
edpratomo
From: <pko...@me...> - 2001-07-29 10:25:50
|
Hello, I quote my identifiers so that they don't conflict with InterBase key words or data types. The following doesn't work with InterBase, although it works if entered through the InterBase console. The Database/View Metadata command shows quoted identifiers, too. $db->do(qq{ CREATE TABLE "ITEMS" ( "ID" INTEGER NOT NULL, "TITLE" VARCHAR(45) NOT NULL, "ITEM_ID" VARCHAR(15) NOT NULL, CONSTRAINT "PKEY_ITEMS_ID" PRIMARY KEY ("ID") )}) Is there any workaround? Thanks, in advance, Peter |