Lines Matching refs:DROP

2193 ** rollback, ABORT processing, [DROP TABLE], or by any other
2238 ** do rollbacks or ABORT processing, or [DROP TABLE] processing. The
6920 ** <b>The "DROP TABLE" Exception</b>
6924 ** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement,
6929 ** invoked immediately. If the application then re-attempts the "DROP TABLE"
6930 ** or "DROP INDEX" query, an infinite loop might be the result.
6935 ** the special "DROP TABLE/INDEX" case, the extended error code is just
12813 ** "DROP TABLE" statements and to prevent some nasty side effects of
34785 ** But sometimes (for example when during a DROP of a large table) most
79154 ** DROP TABLE
79156 ** DROP INDEX
81121 ** after a DROP INDEX or DROP TABLE command.
81143 ** This routine is called to do the work of a DROP TABLE statement.
81216 /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used
81220 sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName);
81224 sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName);
82086 ** implements the DROP INDEX statement.
99997 ** when a DROP TABLE is mentioned.
106474 "SET", "DEFERRABLE", "FOREIGN", "DROP",
106624 /* 107 */ "cmd ::= DROP TABLE ifexists fullname",
106628 /* 111 */ "cmd ::= DROP VIEW ifexists fullname",
106769 /* 252 */ "cmd ::= DROP INDEX ifexists fullname",
106817 /* 300 */ "cmd ::= DROP TRIGGER ifexists fullname",
107880 case 107: /* cmd ::= DROP TABLE ifexists fullname */
107890 case 111: /* cmd ::= DROP VIEW ifexists fullname */
108472 case 252: /* cmd ::= DROP INDEX ifexists fullname */
108611 case 300: /* cmd ::= DROP TRIGGER ifexists fullname */
109277 testcase( i==101 ); /* DROP */
114732 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_content'", p->zDb, p->zName);
114733 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segments'", p->zDb,p->zName);
114734 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segdir'", p->zDb, p->zName);
114735 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_docsize'", p->zDb, p->zName);
114736 fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_stat'", p->zDb, p->zName);
127808 "DROP TABLE '%q'.'%q_node';"
127809 "DROP TABLE '%q'.'%q_rowid';"
127810 "DROP TABLE '%q'.'%q_parent';",