Lines Matching refs:zTable
6052 const char *zTable,
77550 const char *zTable, /* The table containing the blob */
77603 if( !sqlite3SafetyCheckOk(db) || zTable==0 ){
77623 pTab = sqlite3LocateTable(pParse, 0, zTable, zDb);
77626 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
77630 sqlite3ErrorMsg(pParse, "cannot open table without rowid: %s", zTable);
77635 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
81973 const char *zTable;
81981 zTable = pExpr->pLeft->u.zToken;
81986 zTable = pRight->pLeft->u.zToken;
81989 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);
91113 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
91114 return sqlite3_stricmp(zTable, "sqlite_user")==0;