Home
last modified time | relevance | path

Searched refs:pSchema (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c17852 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
17890 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
17891 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
17892 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
17893 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
18182 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
18832 Schema *pSchema; /* Schema that contains this table */ member
19152 Schema *pSchema; /* Schema containing this index */ member
19750 Schema *pSchema; /* Schema to which this item is fixed */ member
20475 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
H A Dshell.c14213 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
14220 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
14232 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
14233 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
14234 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
14235 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
14236 int bVirtual = sqlite3_column_int(pSchema, 4); in idxCreateVtabSchema()
14277 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()