Searched refs:sqlite3StrNICmp (Results 1 – 10 of 10) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | complete.c | 210 if( nId==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){ in sqlite3_complete() 218 if( nId==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){ in sqlite3_complete() 220 }else if( nId==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){ in sqlite3_complete() 222 }else if( nId==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){ in sqlite3_complete() 230 if( nId==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){ in sqlite3_complete() 234 if( nId==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 ){ in sqlite3_complete()
|
| H A D | build.c | 382 if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ in sqlite3FindTable() 411 if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ in sqlite3FindTable() 517 if( sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ in sqlite3PreferredTableName() 1065 if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7)) in sqlite3CheckObjectName() 1991 if( pType->n==7 && sqlite3StrNICmp("virtual",pType->z,7)==0 ){ in sqlite3AddGenerated() 1993 }else if( pType->n==6 && sqlite3StrNICmp("stored",pType->z,6)==0 ){ in sqlite3AddGenerated() 2536 if( sqlite3StrNICmp(pOther->zName, pTab->zName, nName)==0 in sqlite3MarkAllShadowTablesOf() 3440 if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ in tableMayNotBeDropped() 3441 if( sqlite3StrNICmp(pTab->zName+7, "stat", 4)==0 ) return 0; in tableMayNotBeDropped() 3442 if( sqlite3StrNICmp(pTab->zName+7, "parameters", 10)==0 ) return 0; in tableMayNotBeDropped() [all …]
|
| H A D | pragma.c | 57 if( iLength[i]==n && sqlite3StrNICmp(&zText[iOffset[i]],z,n)==0 in getSafetyLevel() 702 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break; in sqlite3Pragma() 2513 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){ in sqlite3Pragma()
|
| H A D | main.c | 1049 int r = sqlite3StrNICmp( in nocaseCollatingFunc() 4859 if( sqlite3StrNICmp(zOptName, "SQLITE_", 7)==0 ) zOptName += 7; in sqlite3_compileoption_used() 4865 if( sqlite3StrNICmp(zOptName, azCompileOpt[i], n)==0 in sqlite3_compileoption_used()
|
| H A D | resolve.c | 124 if( zDb && (sqlite3StrNICmp(zSpan, zDb, n)!=0 || zDb[n]!=0) ){ in sqlite3MatchEName() 129 if( zTab && (sqlite3StrNICmp(zSpan, zTab, n)!=0 || zTab[n]!=0) ){ in sqlite3MatchEName()
|
| H A D | alter.c | 32 if( 0==sqlite3StrNICmp(pTab->zName, "sqlite_", 7) in isAlterableTable() 1140 if( sqlite3StrNICmp(zSql,"CREATE ",7)!=0 ){ in renameParseSql()
|
| H A D | vtab.c | 655 if( 0==sqlite3StrNICmp("hidden", &zType[i], 6) in vtabCallConstructor()
|
| H A D | trigger.c | 211 if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ in sqlite3BeginTrigger()
|
| H A D | sqliteInt.h | 4392 #define sqlite3StrNICmp sqlite3_strnicmp macro
|
| H A D | select.c | 282 && sqlite3StrNICmp((char*)p->z, &zKeyText[aKeyword[j].i], p->n)==0 ){ in sqlite3JoinType()
|