Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c17369 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
17407 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
17408 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
17409 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
17410 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
17730 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
18374 Schema *pSchema; /* Schema that contains this table */ member
18678 Schema *pSchema; /* Schema containing this index */ member
19199 Schema *pSchema; /* Schema to which this item is fixed */ member
19937 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
H A Dshell.c13235 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
13242 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
13251 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
13252 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
13253 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
13254 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
13290 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()