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

/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c17369 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member in struct:Db
17405 ** Db.pSchema->flags field.
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)
17413 ** Allowed values for the DB.pSchema->flags field.
17730 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
18374 Schema *pSchema; /* Schema that contains this table */ member in struct:Table
18678 Schema *pSchema; /* Schem member in struct:Index
19199 Schema *pSchema; /* Schema to which this item is fixed */ member in struct:SrcItem
19937 Schema *pSchema; /* Schema containing the trigger */ member in struct:Trigger
20241 Schema *pSchema; /* Fix items to this schema */ member in struct:DbFixer
24027 Schema *pSchema = db->aDb[i].pSchema; local
69601 void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */ member in struct:BtShared
70123 sqlite3SchemaMutexHeld(sqlite3 *db, int iDb, Schema *pSchema) argument
70368 Schema *pSchema = (Schema *)pBtree->pBt->pSchema; local
105241 Schema *pSchema; local
106476 Schema *pSchema = 0; /* Schema of the expression */ local
119101 Schema *pSchema = db->aDb[iDb].pSchema; /* Schema of database iDb */ local
119658 Schema *pSchema = db->aDb[iDb].pSchema; local
120486 sqlite3AuthRead( Parse *pParse, Expr *pExpr, Schema *pSchema, SrcList *pTabList ) argument
120831 Schema *pSchema; local
121162 Schema *pSchema = db->aDb[j].pSchema; local
123556 Schema *pSchema = p->pSchema; local
126816 Schema *pSchema = (Schema *)p; local
140183 Schema *pSchema; /* The current schema */ local
141250 sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema) argument
151428 Schema *pSchema = pStep->pTrig->pSchema; local
154668 Schema *pSchema = pTab->pSchema; local
179361 Schema *pSchema = db->aDb[i].pSchema; local
[all...]
H A Dshell.c13235 sqlite3_stmt *pSchema = 0; local
13242 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg,
13251 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){
13252 const char *zType = (const char*)sqlite3_column_text(pSchema, 0);
13253 const char *zName = (const char*)sqlite3_column_text(pSchema, 1);
13254 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2);
13290 idxFinalize(&rc, pSchema);

Completed in 725 milliseconds