Lines Matching defs:zFrom
11370 ** used to update the table in database zFrom (call this the "from-table")
11388 ** database zFrom the contents of the two compatible tables would be
11391 ** It an error if database zFrom does not exist or does not contain the
128350 char const *zFrom; /* Name of child table */
128351 int nFrom; /* Length in bytes of zFrom */
128439 zFrom = pFKey->pFrom->zName;
128440 nFrom = sqlite3Strlen30(zFrom);
128448 tFrom.z = zFrom;
128477 memcpy((char *)pStep->zTarget, zFrom, nFrom);
188259 ** If the word ends with zFrom and xCond() is true for the stem
188260 ** of the word that preceeds the zFrom ending, then change the
188263 ** The input word *pz and zFrom are both in reverse order. zTo
188266 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
188272 const char *zFrom, /* If the ending matches this... (Reversed) */
188277 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
188278 if( *zFrom!=0 ) return 0;
217215 const char *zFrom,
217221 pSession->zDb, zFrom, pTab->zName, pTab->azCol, pTab->abPK
217228 pSession->zDb, pTab->zName, zFrom, pTab->zName, zExpr, zExpr2
217254 const char *zFrom,
217284 int nCol; /* Columns in zFrom.zTbl */
217287 rc = sessionTableInfo(0, db, zFrom, zTbl, &nCol, 0, &azCol, &abPK);
217315 zDb, zFrom, pTo->zName, pTo->azCol, pTo->abPK
217321 rc = sessionDiffFindNew(SQLITE_INSERT, pSession, pTo, zDb, zFrom, zExpr);
217326 rc = sessionDiffFindNew(SQLITE_DELETE, pSession, pTo, zFrom, zDb, zExpr);
217331 rc = sessionDiffFindModified(pSession, pTo, zFrom, zExpr);