Searched defs:pWhere (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dupdate.c27 * onError pTabList pChanges pWhere
33 Expr *pWhere, /* The WHERE clause. May be null */
198 if( pWhere ){
199 if( sqliteExprResolveIds(pParse, pTabList, 0, pWhere) ){
202 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){
231 pWInfo = sqliteWhereBegin(pParse, pTabList, pWhere, 1, 0);
460 sqliteExprDelete(pWhere);
29 sqliteUpdate( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
H A Dtrigger.c27 sqliteExprDelete(pTmp->pWhere);
255 if( p->pWhere ){
256 Expr *pNew = sqliteExprDup(p->pWhere);
257 sqliteExprDelete(p->pWhere);
258 p->pWhere = pNew;
330 Expr *pWhere, /* The WHERE clause */
339 pTriggerStep->pWhere = pWhere;
351 TriggerStep *sqliteTriggerDeleteStep(Token *pTableName, Expr *pWhere){ argument
357 pTriggerStep->pWhere
327 sqliteTriggerUpdateStep( Token *pTableName, ExprList *pEList, Expr *pWhere, int orconf ) argument
[all...]
H A Dwhere.c386 Expr *pWhere, /* The WHERE clause */
415 nExpr = exprSplit(ARRAYSIZE(aExpr), aExpr, pWhere);
438 if( pWhere && (pTabList->nSrc==0 || sqliteExprIsConstant(pWhere)) ){
439 sqliteExprIfFalse(pParse, pWhere, pWInfo->iBreak, 1);
440 pWhere = 0;
383 sqliteWhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, int pushKey, ExprList **ppOrderBy ) argument
H A Dselect.c28 Expr *pWhere, /* the WHERE clause */
41 sqliteExprDelete(pWhere);
51 pNew->pWhere = pWhere;
233 addWhereTerm(pTab->aCol[j].zName, pTab, pOther->pTab, &p->pWhere);
251 if( p->pWhere==0 ){
252 p->pWhere = pTerm->pOn;
254 p->pWhere = sqliteExpr(TK_AND, p->pWhere, pTerm->pOn, 0);
278 addWhereTerm(pList->a[j].zName, pTerm->pTab, pOther->pTab, &p->pWhere);
25 sqliteSelectNew( ExprList *pEList, SrcList *pSrc, Expr *pWhere, ExprList *pGroupBy, Expr *pHaving, ExprList *pOrderBy, int isDistinct, int nLimit, int nOffset ) argument
1649 Expr *pWhere; local
2025 Expr *pWhere; /* The WHERE clause. May be NULL */ local
[all...]
H A DsqliteInt.h858 Expr *pWhere; /* The WHERE clause */ member in struct:Select
1013 * pWhere -> The WHERE clause of the DELETE statement if one is specified.
1018 * pWhere -> The WHERE clause of the UPDATE statement if one is specified.
1033 Expr *pWhere; /* Valid for DELETE, UPDATE steps */ member in struct:TriggerStep

Completed in 38 milliseconds