Lines Matching refs:zFrom
12223 ** used to update the table in database zFrom (call this the "from-table")
12241 ** database zFrom the contents of the two compatible tables would be
12245 ** error if database zFrom does not exist or does not contain the required
138405 char const *zFrom; /* Name of child table */
138406 int nFrom; /* Length in bytes of zFrom */
138494 zFrom = pFKey->pFrom->zName;
138495 nFrom = sqlite3Strlen30(zFrom);
138509 pItem->zName = sqlite3DbStrDup(db, zFrom);
138534 pItem->zName = sqlite3DbStrNDup(db, zFrom, nFrom);
202355 ** If the word ends with zFrom and xCond() is true for the stem
202356 ** of the word that precedes the zFrom ending, then change the
202359 ** The input word *pz and zFrom are both in reverse order. zTo
202362 ** Return TRUE if zFrom matches. Return FALSE if zFrom does not
202368 const char *zFrom, /* If the ending matches this... (Reversed) */
202373 while( *zFrom && *zFrom==*z ){ z++; zFrom++; }
202374 if( *zFrom!=0 ) return 0;
235520 const char *zFrom,
235526 pSession->zDb, zFrom, pTab->zName, pTab->azCol, pTab->abPK
235532 char *z2 = sessionAllCols(zFrom, pTab);
235535 z1, z2, pSession->zDb, pTab->zName, zFrom, pTab->zName, zExpr, zExpr2
235564 const char *zFrom,
235596 int nCol = 0; /* Columns in zFrom.zTbl */
235602 /* Check that database zFrom is attached. */
235603 zDbExists = sqlite3_mprintf("SELECT * FROM %Q.sqlite_schema", zFrom);
235618 rc = sessionTableInfo(0, db, zFrom, zTbl,
235628 *pzErrMsg = sqlite3_mprintf("no such table: %s.%s", zFrom, zTbl);
235657 zDb, zFrom, pTo->zName, pTo->azCol, pTo->abPK
235663 rc = sessionDiffFindNew(SQLITE_INSERT, pSession, pTo, zDb, zFrom, zExpr);
235668 rc = sessionDiffFindNew(SQLITE_DELETE, pSession, pTo, zFrom, zDb, zExpr);
235673 rc = sessionDiffFindModified(pSession, pTo, zFrom, zExpr);