In a Livecode script I have
put "CREATE TABLE containers ( `id` INTEGER NOT NULL, `name` TEXT NOT NULL, `description` TEXT, `location` TEXT, `kind` TEXT NOT NULL, `capacity` INTEGER NOT NULL, PRIMARY KEY(id) )" into tSQL
It would read much better if I could use line continuation as in
put "CREATE TABLE containers (\
`id` INTEGER NOT NULL,\
`name` TEXT NOT NULL,\
`description` TEXT,\
`location` TEXT,\
`kind` TEXT NOT NULL,\
`capacity` INTEGER NOT NULL,\
PRIMARY KEY(id)\
)" into tSQL
but the \ does not seem to work when the line contains double quotes. Is there any other way to accomplist his?