Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c18495 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
18533 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
18534 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
18535 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
18536 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
18827 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
19478 Schema *pSchema; /* Schema that contains this table */ member
19813 Schema *pSchema; /* Schema containing this index */ member
20412 Schema *pSchema; /* Schema to which this item is fixed */ member
21119 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
H A Dshell.c16224 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
16231 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
16243 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
16244 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
16245 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
16246 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
16247 int bVirtual = sqlite3_column_int(pSchema, 4); in idxCreateVtabSchema()
16288 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()