Lines Matching defs:SQLITE_READ
3732 ** ^If the action code is [SQLITE_READ]
3741 ** "SELECT count(*) FROM tab") then the [SQLITE_READ] authorizer callback
3844 #define SQLITE_READ 20 /* Table Name Column Name */
126102 ** SQLITE_READ
126164 rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext);
156710 ** Issue SQLITE_READ authorizations with a fake column name for any
156712 ** Examples of where these kinds of null SQLITE_READ authorizations
156715 ** SELECT count(*) FROM t1; -- SQLITE_READ t1.""
156716 ** SELECT t1.* FROM t1, t2; -- SQLITE_READ t2.""
156736 sqlite3AuthCheck(pParse, SQLITE_READ, pItem->zName, "", zDb);