Lines Matching refs:zTable
6052 const char *zTable,
77532 const char *zTable, /* The table containing the blob */
77585 if( !sqlite3SafetyCheckOk(db) || zTable==0 ){
77605 pTab = sqlite3LocateTable(pParse, 0, zTable, zDb);
77608 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
77612 sqlite3ErrorMsg(pParse, "cannot open table without rowid: %s", zTable);
77617 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
81955 const char *zTable;
81963 zTable = pExpr->pLeft->u.zToken;
81968 zTable = pRight->pLeft->u.zToken;
81971 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);
91095 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
91096 return sqlite3_stricmp(zTable, "sqlite_user")==0;