Lines Matching refs:isView
10873 SQLITE_PRIVATE Table *sqlite3LocateTable(Parse*,int isView,const char*, const char*);
75150 int isView, /* True if looking for a VIEW rather than a TABLE */
75164 const char *zMsg = isView ? "no such view" : "no such table";
75556 int isView, /* True if this is a VIEW */
75609 if( isView ){
75725 if( isView || isVirtual ){
76805 SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
76817 pTab = sqlite3LocateTable(pParse, isView,
76842 if( isView ){
76877 if( isView && pTab->pSelect==0 ){
76881 if( !isView && pTab->pSelect ){
76947 if( !isView && !IsVirtual(pTab) ){
79240 int isView; /* True if attempting to delete from a view */
79264 isView = pTab->pSelect!=0;
79267 # define isView 0
79270 # undef isView
79271 # define isView 0
79291 assert(!isView || pTrigger);
79303 if( isView ){
79320 if( isView ){
79350 assert( !isView );
79388 if( !isView ){
79413 if( !isView && !IsVirtual(pTab) ){
79445 /* Make sure "isView" and other macros defined above are undefined. Otherwise
79448 #ifdef isView
79449 #undef isView
82901 int isView; /* True if attempting to insert into a view */
82934 isView = pTab->pSelect!=0;
82938 # define isView 0
82941 # undef isView
82942 # define isView 0
83181 if( !isView ){
83292 if( !isView ){
83309 if( !isView ){
83440 if( !IsVirtual(pTab) && !isView ){
83476 /* Make sure "isView" and other macros defined above are undefined. Otherwise
83479 #ifdef isView
83480 #undef isView
93689 int isView; /* True when updating a view (INSTEAD OF trigger) */
93722 isView = pTab->pSelect!=0;
93726 # define isView 0
93730 # undef isView
93731 # define isView 0
93863 if( isView ){
93871 if( isView ){
93909 if( !isView ){
94048 if( !isView ){
94136 /* Make sure "isView" and other macros defined above are undefined. Otherwise
94139 #ifdef isView
94140 #undef isView