Searched refs:pSchema (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 17419 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member 17457 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P)) 17458 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0) 17459 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P) 17460 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P) 17784 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc) 18428 Schema *pSchema; /* Schema that contains this table */ member 18740 Schema *pSchema; /* Schema containing this index */ member 19263 Schema *pSchema; /* Schema to which this item is fixed */ member 20007 Schema *pSchema; /* Schema containing the trigger */ member [all …]
|
H A D | shell.c | 13314 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local 13321 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema() 13330 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema() 13331 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema() 13332 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema() 13333 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema() 13369 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()
|