Lines Matching refs:zTable

8121 ** in row iRow, column zColumn, table zTable in database zDb;
8125 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8147 ** <li> ^(Table zTable does not exist within database zDb)^,
8148 ** <li> ^(Table zTable is a WITHOUT ROWID table)^,
8201 const char *zTable,
93268 const char *zTable, /* The table containing the blob */
93289 if( !sqlite3SafetyCheckOk(db) || zTable==0 ){
93306 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
93309 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
93313 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
93318 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
97752 ** can be used. The zTable variable is the name of the table (the "Y"). This
97753 ** value can be NULL if zDb is also NULL. If zTable is NULL it
98313 const char *zTable;
98319 zTable = 0;
98336 zTable = pLeft->u.zToken;
98343 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);
106774 ** sqlite_rename_column(zSql, iCol, bQuote, zNew, zTable, zOld)
106787 ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol
106803 const char *zTable = (const char*)sqlite3_value_text(argv[4]);
106821 if( zTable==0 ) return;
106825 pTab = sqlite3FindTable(db, zTable, zDb);
106861 int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName);
106891 if( 0==sqlite3_stricmp(pFKey->zTo, zTable)
110330 ** Return TRUE if zTable is the name of the system table that stores the
110333 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
110334 return sqlite3_stricmp(zTable, "sqlite_user")==0;