• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/sqlite/

Lines Matching refs:isView

10527 SQLITE_PRIVATE Table *sqlite3LocateTable(Parse*,int isView,const char*, const char*);
74022 int isView, /* True if looking for a VIEW rather than a TABLE */
74036 const char *zMsg = isView ? "no such view" : "no such table";
74428 int isView, /* True if this is a VIEW */
74480 if( isView ){
74594 if( isView || isVirtual ){
75676 SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
75688 pTab = sqlite3LocateTable(pParse, isView,
75713 if( isView ){
75748 if( isView && pTab->pSelect==0 ){
75752 if( !isView && pTab->pSelect ){
75818 if( !isView && !IsVirtual(pTab) ){
78110 int isView; /* True if attempting to delete from a view */
78134 isView = pTab->pSelect!=0;
78137 # define isView 0
78140 # undef isView
78141 # define isView 0
78161 assert(!isView || pTrigger);
78173 if( isView ){
78190 if( isView ){
78220 assert( !isView );
78258 if( !isView ){
78283 if( !isView && !IsVirtual(pTab) ){
78315 /* Make sure "isView" and other macros defined above are undefined. Otherwise
78318 #ifdef isView
78319 #undef isView
81771 int isView; /* True if attempting to insert into a view */
81804 isView = pTab->pSelect!=0;
81808 # define isView 0
81811 # undef isView
81812 # define isView 0
82051 if( !isView ){
82162 if( !isView ){
82179 if( !isView ){
82310 if( !IsVirtual(pTab) && !isView ){
82346 /* Make sure "isView" and other macros defined above are undefined. Otherwise
82349 #ifdef isView
82350 #undef isView
92366 int isView; /* True when updating a view (INSTEAD OF trigger) */
92399 isView = pTab->pSelect!=0;
92403 # define isView 0
92407 # undef isView
92408 # define isView 0
92540 if( isView ){
92548 if( isView ){
92586 if( !isView ){
92725 if( !isView ){
92813 /* Make sure "isView" and other macros defined above are undefined. Otherwise
92816 #ifdef isView
92817 #undef isView