Lines Matching defs:zRight

31775 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
31777 return zRight ? -1 : 0;
31778 }else if( zRight==0 ){
31781 return sqlite3StrICmp(zLeft, zRight);
31783 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
31787 b = (unsigned char *)zRight;
31802 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
31805 return zRight ? -1 : 0;
31806 }else if( zRight==0 ){
31810 b = (unsigned char *)zRight;
127934 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
127965 zRight = sqlite3MPrintf(db, "-%T", pValue);
127967 zRight = sqlite3NameFromToken(db, pValue);
127972 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
127993 aFcntl[2] = zRight;
128025 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0)
128065 if( !zRight ){
128074 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
128098 if( !zRight ){
128105 db->nextPagesize = sqlite3Atoi(zRight);
128125 if( zRight ){
128126 if( sqlite3_stricmp(zRight, "fast")==0 ){
128129 b = sqlite3GetBoolean(zRight, 0);
128168 if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){
128186 int eMode = getLockingMode(zRight);
128235 if( zRight==0 ){
128241 int n = sqlite3Strlen30(zRight);
128243 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
128280 if( zRight ){
128281 sqlite3DecOrHexToI64(zRight, &iLimit);
128302 if( !zRight ){
128305 int eAuto = getAutoVacuum(zRight);
128353 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
128381 if( !zRight ){
128384 int size = sqlite3Atoi(zRight);
128415 if( !zRight ){
128421 if( sqlite3GetInt32(zRight, &size) ){
128424 if( sqlite3GetBoolean(zRight, size!=0) ){
128452 if( zRight ){
128454 sqlite3DecOrHexToI64(zRight, &sz);
128490 if( !zRight ){
128493 changeTempStorage(pParse, zRight);
128509 if( !zRight ){
128513 if( zRight[0] ){
128515 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
128528 if( zRight[0] ){
128529 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
128553 if( !zRight ){
128557 if( zRight[0] ){
128559 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
128566 if( zRight[0] ){
128567 sqlite3_data_directory = sqlite3_mprintf("%s", zRight);
128587 if( !zRight ){
128598 if( zRight[0] ){
128600 zRight);
128624 if( !zRight ){
128631 int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK;
128644 if( zRight==0 ){
128661 if( sqlite3GetBoolean(zRight, 0) ){
128693 case PragTyp_TABLE_INFO: if( zRight ){
128696 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
128767 case PragTyp_INDEX_INFO: if( zRight ){
128770 pIdx = sqlite3FindIndex(db, zRight, zDb);
128772 /* If there is no index named zRight, check to see if there is a
128773 ** WITHOUT ROWID table named zRight, and if there is, show the
128775 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
128812 case PragTyp_INDEX_LIST: if( zRight ){
128816 pTab = sqlite3FindTable(db, zRight, zDb);
128902 case PragTyp_FOREIGN_KEY_LIST: if( zRight ){
128905 pTab = sqlite3FindTable(db, zRight, zDb);
128959 if( zRight ){
128960 pTab = sqlite3LocateTable(pParse, 0, zRight, zDb);
129054 if( zRight ){
129055 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
129114 if( zRight ){
129115 if( sqlite3GetInt32(zRight, &mxErr) ){
129120 pObjTab = sqlite3LocateTable(pParse, 0, zRight,
129390 if( !zRight ){ /* "PRAGMA encoding" */
129404 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
129412 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
129456 if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){
129469 aOp[1].p3 = sqlite3Atoi(zRight);
129520 if( zRight ){
129521 if( sqlite3StrICmp(zRight, "full")==0 ){
129523 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
129525 }else if( sqlite3StrICmp(zRight, "truncate")==0 ){
129544 if( zRight ){
129545 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
129631 if( zRight ){
129632 opMask = (u32)sqlite3Atoi(zRight);
129690 if( zRight ){
129691 sqlite3_busy_timeout(db, sqlite3Atoi(zRight));
129710 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
129730 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
129747 if( zRight
129748 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
129766 if( zRight
129767 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
129805 case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){
129806 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
129807 sqlite3_activate_cerod(&zRight[6]);
129820 if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){
129826 sqlite3DbFree(db, zRight);
197992 const void *zRight
197996 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);