Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c18474 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
18512 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
18513 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
18514 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
18515 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
18806 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
19457 Schema *pSchema; /* Schema that contains this table */ member
19792 Schema *pSchema; /* Schema containing this index */ member
20391 Schema *pSchema; /* Schema to which this item is fixed */ member
21097 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
H A Dshell.c16186 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
16193 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
16205 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
16206 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
16207 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
16208 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
16209 int bVirtual = sqlite3_column_int(pSchema, 4); in idxCreateVtabSchema()
16250 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()