Lines Matching refs:temp
49 set ::temp TEMP
51 set ::temp {}
61 CREATE $::temp TABLE "temp table"(e,f,g UNIQUE);
62 CREATE INDEX i2 ON [temp table](f);
63 INSERT INTO [temp table] VALUES(5,6,7);
68 SELECT * FROM [temp table];
73 CREATE $::temp TABLE objlist(type, name, tbl_name);
80 FROM temp.sqlite_master WHERE NAME!='objlist';
95 table {temp table} {temp table} \
96 index i2 {temp table} \
97 index {sqlite_autoindex_temp table_1} {temp table} \
107 ALTER TABLE [temp table] RENAME to TempTab;
156 SELECT type, name, tbl_name FROM temp.sqlite_master
481 CREATE $::temp TRIGGER trig1 AFTER INSERT ON tbl1 BEGIN
501 CREATE $::temp TRIGGER trig2 AFTER UPDATE ON tbl2 BEGIN
527 SELECT * FROM temp.sqlite_master WHERE type = 'trigger';