Home | History | Annotate | Download | only in orig

Lines Matching full:sqlite_sequence

5043 ** modified (i.e. sqlite_master and sqlite_sequence).)^
10350 Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */
83124 /* If the sqlite_sequence table exists in this database, then update
83127 if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){
83129 "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q",
87017 /* If this is the magic sqlite_sequence table used by autoincrement,
87022 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
88014 /* Check to see if we need to create an sqlite_sequence table for
88022 "CREATE TABLE %Q.sqlite_sequence(name,seq)",
88446 /* Remove any entries of the sqlite_sequence table associated with
88448 ** at the btree level, in case the sqlite_sequence table needs to
88453 "DELETE FROM %Q.sqlite_sequence WHERE name=%Q",
91364 /* Update the sqlite_sequence table by storing the content of the
94990 ** (3) Register to hold the rowid in sqlite_sequence of pTab
95016 pToplevel->nMem++; /* Rowid in sqlite_sequence */
95078 ** maximum rowid values back into the sqlite_sequence register.
95358 ** sqlite_sequence table and store it in memory cell regAutoinc.
95787 /* Update the sqlite_sequence table by storing the content of the
108827 /* Update the sqlite_sequence table by storing the content of the
109195 " FROM sqlite_master WHERE type='table' AND name!='sqlite_sequence'"
109216 "WHERE type = 'table' AND name!='sqlite_sequence' "
109225 "FROM vacuum_db.sqlite_master WHERE name='sqlite_sequence' "
109231 "FROM vacuum_db.sqlite_master WHERE name=='sqlite_sequence';"