Lines Matching refs:zRight
31410 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
31412 return zRight ? -1 : 0;
31413 }else if( zRight==0 ){
31416 return sqlite3StrICmp(zLeft, zRight);
31418 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
31422 b = (unsigned char *)zRight;
31437 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
31440 return zRight ? -1 : 0;
31441 }else if( zRight==0 ){
31445 b = (unsigned char *)zRight;
125727 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
125758 zRight = sqlite3MPrintf(db, "-%T", pValue);
125760 zRight = sqlite3NameFromToken(db, pValue);
125765 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
125786 aFcntl[2] = zRight;
125818 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0)
125858 if( !zRight ){
125867 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
125891 if( !zRight ){
125898 db->nextPagesize = sqlite3Atoi(zRight);
125918 if( zRight ){
125919 if( sqlite3_stricmp(zRight, "fast")==0 ){
125922 b = sqlite3GetBoolean(zRight, 0);
125961 sqlite3AbsInt32(sqlite3Atoi(zRight)));
125973 int eMode = getLockingMode(zRight);
126022 if( zRight==0 ){
126028 int n = sqlite3Strlen30(zRight);
126030 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
126067 if( zRight ){
126068 sqlite3DecOrHexToI64(zRight, &iLimit);
126089 if( !zRight ){
126092 int eAuto = getAutoVacuum(zRight);
126140 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
126168 if( !zRight ){
126171 int size = sqlite3Atoi(zRight);
126202 if( !zRight ){
126208 if( sqlite3GetInt32(zRight, &size) ){
126211 if( sqlite3GetBoolean(zRight, size!=0) ){
126239 if( zRight ){
126241 sqlite3DecOrHexToI64(zRight, &sz);
126277 if( !zRight ){
126280 changeTempStorage(pParse, zRight);
126296 if( !zRight ){
126300 if( zRight[0] ){
126302 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
126315 if( zRight[0] ){
126316 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
126340 if( !zRight ){
126344 if( zRight[0] ){
126346 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
126353 if( zRight[0] ){
126354 sqlite3_data_directory = sqlite3_mprintf("%s", zRight);
126374 if( !zRight ){
126385 if( zRight[0] ){
126387 zRight);
126411 if( !zRight ){
126418 int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK;
126431 if( zRight==0 ){
126448 if( sqlite3GetBoolean(zRight, 0) ){
126480 case PragTyp_TABLE_INFO: if( zRight ){
126482 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
126555 case PragTyp_INDEX_INFO: if( zRight ){
126558 pIdx = sqlite3FindIndex(db, zRight, zDb);
126563 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
126600 case PragTyp_INDEX_LIST: if( zRight ){
126604 pTab = sqlite3FindTable(db, zRight, zDb);
126690 case PragTyp_FOREIGN_KEY_LIST: if( zRight ){
126693 pTab = sqlite3FindTable(db, zRight, zDb);
126748 if( zRight ){
126749 pTab = sqlite3LocateTable(pParse, 0, zRight, zDb);
126842 if( zRight ){
126843 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
126889 if( zRight ){
126890 sqlite3GetInt32(zRight, &mxErr);
127154 if( !zRight ){ /* "PRAGMA encoding" */
127168 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
127176 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
127220 if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){
127233 aOp[1].p3 = sqlite3Atoi(zRight);
127283 if( zRight ){
127284 if( sqlite3StrICmp(zRight, "full")==0 ){
127286 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
127288 }else if( sqlite3StrICmp(zRight, "truncate")==0 ){
127307 if( zRight ){
127308 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
127394 if( zRight ){
127395 opMask = (u32)sqlite3Atoi(zRight);
127453 if( zRight ){
127454 sqlite3_busy_timeout(db, sqlite3Atoi(zRight));
127473 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
127493 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
127510 if( zRight
127511 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
127529 if( zRight
127530 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
127568 case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){
127569 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
127570 sqlite3_activate_cerod(&zRight[6]);
127583 if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){
127589 sqlite3DbFree(db, zRight);
193963 const void *zRight
193967 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);