Lines Matching refs:zTable

8026 ** in row iRow, column zColumn, table zTable in database zDb;
8030 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8052 ** <li> ^(Table zTable does not exist within database zDb)^,
8053 ** <li> ^(Table zTable is a WITHOUT ROWID table)^,
8106 const char *zTable,
102407 const char *zTable, /* The table containing the blob */
102428 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
102444 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
102447 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
102451 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
102456 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
106994 ** can be used. The zTable variable is the name of the table (the "Y"). This
106995 ** value can be NULL if zDb is also NULL. If zTable is NULL it
107803 const char *zTable;
107809 zTable = 0;
107829 zTable = pLeft->u.zToken;
107836 return lookupName(pParse, zDb, zTable, pRight, pNC, pExpr);
117624 ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol
117641 const char *zTable = (const char*)sqlite3_value_text(argv[4]);
117659 if( zTable==0 ) return;
117663 pTab = sqlite3FindTable(db, zTable, zDb);
117699 int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName);
117733 if( 0==sqlite3_stricmp(pFKey->zTo, zTable)
121700 ** Return TRUE if zTable is the name of the system table that stores the
121703 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
121704 return sqlite3_stricmp(zTable, "sqlite_user")==0;