Lines Matching refs:zTable

7619 ** in row iRow, column zColumn, table zTable in database zDb;
7623 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
7645 ** <li> ^(Table zTable does not exist within database zDb)^,
7646 ** <li> ^(Table zTable is a WITHOUT ROWID table)^,
7699 const char *zTable,
95300 const char *zTable, /* The table containing the blob */
95321 if( !sqlite3SafetyCheckOk(db) || zTable==0 ){
95338 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
95341 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
95345 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
95350 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
99817 ** can be used. The zTable variable is the name of the table (the "Y"). This
99818 ** value can be NULL if zDb is also NULL. If zTable is NULL it
100452 const char *zTable;
100458 zTable = 0;
100478 zTable = pLeft->u.zToken;
100486 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);
109422 ** sqlite_rename_column(zSql, iCol, bQuote, zNew, zTable, zOld)
109435 ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol
109451 const char *zTable = (const char*)sqlite3_value_text(argv[4]);
109469 if( zTable==0 ) return;
109473 pTab = sqlite3FindTable(db, zTable, zDb);
109509 int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName);
109543 if( 0==sqlite3_stricmp(pFKey->zTo, zTable)
113373 ** Return TRUE if zTable is the name of the system table that stores the
113376 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
113377 return sqlite3_stricmp(zTable, "sqlite_user")==0;