Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3.c107058 pSchema = db->aDb[0].pSchema;
107283 pSchema = pTab->pSchema;
120970 pItem->pSchema = pFix->pSchema;
121584 pSchema = db->aDb[iDb].pSchema;
124303 Schema *pSchema = p->pSchema;
132808 pTrigger->pSchema = pTab->pSchema;
141245 pSchema = db->aDb[iDb].pSchema;
152582 if( pSchema!=db->aDb[1].pSchema ){
152583 pSrc->a[0].pSchema = pSchema;
155904 Schema *pSchema = pTab->pSchema;
[all …]
H A Dshell.c13314 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()