Searched refs:pSelect (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 18419 Select *pSelect; /* View definition */ member 18876 Select *pSelect; /* SELECT statement that this AggInfo supports */ member 18995 Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ member 19268 Select *pSelect; /* A SELECT statement used in place of a table name */ member 20071 Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ member 20296 Select *pSelect; /* HAVING to WHERE clause ctx */ member 20361 Select *pSelect; /* The definition of this CTE */ member 20861 SQLITE_PRIVATE void sqlite3GenerateColumnNames(Parse *pParse, Select *pSelect); 31997 Select *pSel = pItem->pSelect; in sqlite3_str_vappendf() 32759 sqlite3TreeViewSelect(pView, pCte->pSelect, 0); in sqlite3TreeViewWith() [all …]
|
H A D | shell.c | 13224 sqlite3_stmt *pSelect = 0; in idxProcessOneTrigger() local 13229 rc = idxPrintfPrepareStmt(p->db, &pSelect, pzErr, zSql, zTab, zTab); in idxProcessOneTrigger() 13230 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSelect) ){ in idxProcessOneTrigger() 13231 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() 13235 idxFinalize(&rc, pSelect); in idxProcessOneTrigger() 17619 sqlite3_stmt *pSelect = 0; in recoverWriteSchema1() local 17622 pSelect = recoverPrepare(p, p->dbOut, in recoverWriteSchema1() 17641 if( pSelect ){ in recoverWriteSchema1() 17642 sqlite3_bind_int(pSelect, 1, p->bSlowIndexes); in recoverWriteSchema1() 17643 while( sqlite3_step(pSelect)==SQLITE_ROW ){ in recoverWriteSchema1() [all …]
|