Home
last modified time | relevance | path

Searched refs:pSelect (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/sqlite3/
HDsqlite3.c11581 Select *pSelect; /* NULL for tables. Points to definition if a view. */ member
12025 Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ member
12234 Select *pSelect; /* A SELECT statement used in place of a table name */ member
12802 Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ member
12975 Select *pSelect; /* The definition of this CTE */ member
22670 if( pItem->pSelect ){
22671 sqlite3TreeViewSelect(pView, pItem->pSelect, 0);
22862 sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0);
22867 sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0);
22874 sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0);
[all …]
HDshell.c1154 sqlite3_stmt *pSelect; in run_table_dump_query() local
1159 rc = sqlite3_prepare_v2(p->db, zSelect, -1, &pSelect, 0); in run_table_dump_query()
1160 if( rc!=SQLITE_OK || !pSelect ){ in run_table_dump_query()
1165 rc = sqlite3_step(pSelect); in run_table_dump_query()
1166 nResult = sqlite3_column_count(pSelect); in run_table_dump_query()
1172 z = (const char*)sqlite3_column_text(pSelect, 0); in run_table_dump_query()
1175 fprintf(p->out, ",%s", sqlite3_column_text(pSelect, i)); in run_table_dump_query()
1184 rc = sqlite3_step(pSelect); in run_table_dump_query()
1186 rc = sqlite3_finalize(pSelect); in run_table_dump_query()
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c9928 Select *pSelect; /* NULL for tables. Points to definition if a view. */ member
10308 Select *pSelect; /* Used for sub-selects and "<expr> IN (<select>)" */ member
10494 Select *pSelect; /* A SELECT statement used in place of a table name */ member
11024 Select *pSelect; /* SELECT statment or RHS of INSERT INTO .. SELECT ... */ member
69989 if( pTab && pTab->pSelect ){
71712 if( sqlite3WalkSelect(pWalker, pExpr->x.pSelect) ) return WRC_Abort;
71767 if( sqlite3WalkSelect(pWalker, pItem->pSelect) ){
72107 assert( pExpr->x.pSelect==0 );
72391 sqlite3WalkSelect(pWalker, pExpr->x.pSelect);
72464 Select *pSelect, /* The SELECT statement with the ORDER BY clause */
[all …]