Lines Matching defs:SQLITE_SCHEMA
777 #define SQLITE_SCHEMA 17 /* The database schema changed */
4573 ** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
5279 ** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth)
11689 ** If the tables are not compatible, SQLITE_SCHEMA is returned. If the tables
12234 ** with the configured schema, SQLITE_SCHEMA is returned and the changegroup
12326 ** case, this function fails with SQLITE_SCHEMA. Except, if the changegroup
12433 ** via the sqlite3_log() mechanism with the error code SQLITE_SCHEMA. At most
17802 #define SQLITE_WriteSchema 0x00000001 /* OK to update SQLITE_SCHEMA */
23124 ** itself before giving up and returning SQLITE_SCHEMA.
84958 ** SQLITE_SCHEMA. The statement was then reprepared in pA.
88240 }else if( p->rc==SQLITE_SCHEMA && db->nVdbeActive>1 ){
91140 p->rc = SQLITE_SCHEMA;
91283 while( (rc = sqlite3Step(v))==SQLITE_SCHEMA
91312 ** SQLITE_SCHEMA. tag-20220401a */
97123 ** generation counter, then an SQLITE_SCHEMA error is raised and execution
97217 rc = SQLITE_SCHEMA;
101118 ** or it will fail with SQLITE_SCHEMA.
102616 if( (++nAttempt)>=SQLITE_MAX_SCHEMA_RETRY || rc!=SQLITE_SCHEMA ) break;
102789 assert( rc!=SQLITE_SCHEMA );
142298 ** of date set pParse->rc to SQLITE_SCHEMA. If all schema cookies
142329 ** set Parse.rc to SQLITE_SCHEMA. */
142333 if( DbHasProperty(db, iDb, DB_SchemaLoaded) ) pParse->rc = SQLITE_SCHEMA;
142674 || (rc==SQLITE_SCHEMA && (sqlite3ResetOneSchema(db,-1), cnt++)==0) );
142691 ** occurs, return SQLITE_SCHEMA.
142727 ** and so if a schema change occurs, SQLITE_SCHEMA is returned by
142843 ** and so if a schema change occurs, SQLITE_SCHEMA is returned by
181362 case SQLITE_SCHEMA: zName = "SQLITE_SCHEMA"; break;
181429 /* SQLITE_SCHEMA */ "database schema has changed",
221636 ** throw an SQLITE_SCHEMA exception. The only database page the
226126 pSession->rc = SQLITE_SCHEMA;
226133 pSession->rc = SQLITE_SCHEMA;
226136 pSession->rc = SQLITE_SCHEMA;
226586 pSession->rc = SQLITE_SCHEMA;
227108 rc = SQLITE_SCHEMA;
230087 sqlite3_log(SQLITE_SCHEMA,
230093 sqlite3_log(SQLITE_SCHEMA,
230101 sqlite3_log(SQLITE_SCHEMA, "sqlite3changeset_apply(): "
230675 rc = SQLITE_SCHEMA;