Lines Matching refs:zTable
8243 ** in row iRow, column zColumn, table zTable in database zDb;
8247 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8269 ** <li> ^(Table zTable does not exist within database zDb)^,
8270 ** <li> ^(Table zTable is a WITHOUT ROWID table)^,
8323 const char *zTable,
103701 const char *zTable, /* The table containing the blob */
103723 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
103739 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
103742 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
103746 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
103751 zTable);
103756 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
108304 ** can be used. The zTable variable is the name of the table (the "Y"). This
108305 ** value can be NULL if zDb is also NULL. If zTable is NULL it
109105 const char *zTable;
109111 zTable = 0;
109131 zTable = pLeft->u.zToken;
109138 return lookupName(pParse, zDb, zTable, pRight, pNC, pExpr);
119268 ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol
119285 const char *zTable = (const char*)sqlite3_value_text(argv[4]);
119303 if( zTable==0 ) return;
119307 pTab = sqlite3FindTable(db, zTable, zDb);
119343 int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName);
119377 if( 0==sqlite3_stricmp(pFKey->zTo, zTable)