Lines Matching refs:zTable
8081 const char *zTable,
101867 const char *zTable, /* The table containing the blob */
101888 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
101904 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
101907 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
101911 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
101916 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
107188 const char *zTable;
107194 zTable = 0;
107214 zTable = pLeft->u.zToken;
107222 return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr);
116909 const char *zTable = (const char*)sqlite3_value_text(argv[4]);
116927 if( zTable==0 ) return;
116931 pTab = sqlite3FindTable(db, zTable, zDb);
116967 int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName);
117001 if( 0==sqlite3_stricmp(pFKey->zTo, zTable)
120953 SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){
120954 return sqlite3_stricmp(zTable, "sqlite_user")==0;