Home | History | Annotate | Download | only in orig

Lines Matching defs:zTable

5769 ** in row iRow, column zColumn, table zTable in database zDb;
5773 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5824 const char *zTable,
71284 const char *zTable, /* The table containing the blob */
71349 pTab = sqlite3LocateTable(pParse, 0, zTable, zDb);
71352 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
71357 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
73304 ** can be used. The zTable variable is the name of the table (the "Y"). This
73305 ** value can be NULL if zDb is also NULL. If zTable is NULL it
73662 const char *zTable;
73670 zTable = pExpr->pLeft->u.zToken;
73675 zTable = pRight->pLeft->u.zToken;
73678 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);