• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:TEMP

1276 ** will be set for TEMP  databases, journals and for subjournals.
4950 ** ^For TEMP tables, the database name is "temp".
5404 ** TEMP database, or the name that appears after the AS keyword for
6481 ** to omit code used by TEMP tables without messy #ifndef statements.
8315 u8 orphanTrigger; /* Last statement is orphaned TEMP trigger */
9838 int iDb; /* 0 for main database. 1 for TEMP, 2.. for ATTACHed */
20817 if( DosScanEnv( (PSZ)"TEMP", &zTempPath ) ){
20851 OSTRACE2( "TEMP FILENAME: %s\n", zBuf );
28344 OSTRACE2("TEMP FILENAME: %s\n", zBuf);
48813 ** TEMP database) has a transaction active. There is no need for the
48895 continue; /* Ignore TEMP and :memory: databases */
55003 /* Invalidate all prepared statements whenever the TEMP database
55212 ** to a TEMP table at the SQL level, or to a table opened by
64502 /* If there are TEMP triggers on this table, modify the sqlite_temp_master
65177 if( i==1 ) continue; /* Do not analyze the TEMP database */
65851 ** (Exception: indices, triggers, and views in the TEMP database are
66472 ** names is done.) The search order is TEMP first, then MAIN, then any
66484 int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */
66538 ** TEMP first, then MAIN, then any auxiliary databases added
66546 int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */
66916 ** when the "TEMP" or "TEMPORARY" keyword occurs in between
66929 int isTemp, /* True if this is a TEMP table */
67973 ** CREATE TEMP VIEW ex1 AS SELECT a FROM ex1;
69609 ** Make sure the TEMP database is open and available for use. Return
76805 ** If the TEMP database is open, close it and mark the database schema
78226 /* This can occur if there exists an index on a TEMP table which
78228 ** the permanent table is hidden by the TEMP table, we can also
78274 "CREATE TEMP TABLE sqlite_temp_master(\n"
78517 ** for the TEMP database. This is loaded last, as the TEMP database
83512 ** triggers on pTab in the TEMP schema. This routine prepends all
83513 ** TEMP triggers on pTab to the beginning of the pTab->pTrigger list
83517 ** that fire off of pTab. The list will include any TEMP triggers on
83578 /* If TEMP was specified, then the trigger name may not be qualified. */
83619 ** dropped too. But if a TEMP trigger is created on a non-TEMP table
83754 /* if we are not initializing, and this trigger is not on a TEMP table,
83962 int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */
84119 ** trigger is in TEMP in which case it can refer to any other database it
84493 ** or else it must be a TEMP trigger. */
91403 26, /* TEMP => ID */
91531 "EXISTS", "TEMP", "LP", "RP",
91627 /* 30 */ "temp ::= TEMP",
92772 case 30: /* temp ::= TEMP */ yytestcase(yyruleno==30);
94283 testcase( i==44 ); /* TEMP */
94908 ** TEMP or TEMPORARY
94948 /* State: ** SEMI WS OTHER EXPLAIN CREATE TEMP TRIGGER END */