Home | History | Annotate | Download | only in dist

Lines Matching full:sqlite_sequence

5043 ** modified (i.e. sqlite_master and sqlite_sequence).)^
10350 Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */
83144 /* If the sqlite_sequence table exists in this database, then update
83147 if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){
83149 "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q",
87037 /* If this is the magic sqlite_sequence table used by autoincrement,
87042 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
88034 /* Check to see if we need to create an sqlite_sequence table for
88042 "CREATE TABLE %Q.sqlite_sequence(name,seq)",
88466 /* Remove any entries of the sqlite_sequence table associated with
88468 ** at the btree level, in case the sqlite_sequence table needs to
88473 "DELETE FROM %Q.sqlite_sequence WHERE name=%Q",
91384 /* Update the sqlite_sequence table by storing the content of the
95010 ** (3) Register to hold the rowid in sqlite_sequence of pTab
95036 pToplevel->nMem++; /* Rowid in sqlite_sequence */
95098 ** maximum rowid values back into the sqlite_sequence register.
95378 ** sqlite_sequence table and store it in memory cell regAutoinc.
95807 /* Update the sqlite_sequence table by storing the content of the
108847 /* Update the sqlite_sequence table by storing the content of the
109215 " FROM sqlite_master WHERE type='table' AND name!='sqlite_sequence'"
109236 "WHERE type = 'table' AND name!='sqlite_sequence' "
109245 "FROM vacuum_db.sqlite_master WHERE name='sqlite_sequence' "
109251 "FROM vacuum_db.sqlite_master WHERE name=='sqlite_sequence';"