Lines Matching defs:zRight
33915 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
33917 return zRight ? -1 : 0;
33918 }else if( zRight==0 ){
33921 return sqlite3StrICmp(zLeft, zRight);
33923 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
33927 b = (unsigned char *)zRight;
33942 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
33945 return zRight ? -1 : 0;
33946 }else if( zRight==0 ){
33950 b = (unsigned char *)zRight;
134627 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
134664 zRight = sqlite3MPrintf(db, "-%T", pValue);
134666 zRight = sqlite3NameFromToken(db, pValue);
134671 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
134692 aFcntl[2] = zRight;
134715 if(sqlite3CodecPragma(db, iDb, pParse, zLeft, zRight)) {
134737 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0)
134777 if( !zRight ){
134786 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
134810 if( !zRight ){
134817 db->nextPagesize = sqlite3Atoi(zRight);
134837 if( zRight ){
134838 if( sqlite3_stricmp(zRight, "fast")==0 ){
134841 b = sqlite3GetBoolean(zRight, 0);
134880 if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){
134898 int eMode = getLockingMode(zRight);
134947 if( zRight==0 ){
134953 int n = sqlite3Strlen30(zRight);
134955 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
134992 if( zRight ){
134993 sqlite3DecOrHexToI64(zRight, &iLimit);
135014 if( !zRight ){
135017 int eAuto = getAutoVacuum(zRight);
135065 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
135093 if( !zRight ){
135096 int size = sqlite3Atoi(zRight);
135127 if( !zRight ){
135133 if( sqlite3GetInt32(zRight, &size) ){
135136 if( sqlite3GetBoolean(zRight, size!=0) ){
135164 if( zRight ){
135166 sqlite3DecOrHexToI64(zRight, &sz);
135202 if( !zRight ){
135205 changeTempStorage(pParse, zRight);
135222 if( !zRight ){
135226 if( zRight[0] ){
135228 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
135242 if( zRight[0] ){
135243 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
135269 if( !zRight ){
135273 if( zRight[0] ){
135275 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
135283 if( zRight[0] ){
135284 sqlite3_data_directory = sqlite3_mprintf("%s", zRight);
135305 if( !zRight ){
135316 if( zRight[0] ){
135318 zRight);
135342 if( !zRight ){
135349 int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK;
135362 if( zRight==0 ){
135379 if( sqlite3GetBoolean(zRight, 0) ){
135385 && sqlite3_stricmp(zRight, "reset")==0
135419 case PragTyp_TABLE_INFO: if( zRight ){
135422 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
135526 if( zRight && sqlite3_stricmp(zRight, pTab->zName)!=0 ) continue;
135576 case PragTyp_INDEX_INFO: if( zRight ){
135579 pIdx = sqlite3FindIndex(db, zRight, zDb);
135581 /* If there is no index named zRight, check to see if there is a
135582 ** WITHOUT ROWID table named zRight, and if there is, show the
135584 pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb);
135621 case PragTyp_INDEX_LIST: if( zRight ){
135625 pTab = sqlite3FindTable(db, zRight, zDb);
135713 case PragTyp_FOREIGN_KEY_LIST: if( zRight ){
135716 pTab = sqlite3FindTable(db, zRight, zDb);
135768 if( zRight ){
135769 pTab = sqlite3LocateTable(pParse, 0, zRight, zDb);
135866 if( zRight ){
135867 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
135926 if( zRight ){
135927 if( sqlite3GetInt32(zRight, &mxErr) ){
135932 pObjTab = sqlite3LocateTable(pParse, 0, zRight,
136345 if( !zRight ){ /* "PRAGMA encoding" */
136359 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
136367 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
136411 if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){
136424 aOp[1].p3 = sqlite3Atoi(zRight);
136480 if( zRight ){
136481 if( sqlite3StrICmp(zRight, "full")==0 ){
136483 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
136485 }else if( sqlite3StrICmp(zRight, "truncate")==0 ){
136504 if( zRight ){
136505 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
136591 if( zRight ){
136592 opMask = (u32)sqlite3Atoi(zRight);
136650 if( zRight ){
136651 sqlite3_busy_timeout(db, sqlite3Atoi(zRight));
136670 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
136690 if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){
136707 if( zRight
136708 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK
136726 if( zRight
136727 && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK /* IMP: R-40975-20399 */
136775 if( zRight ){
136777 const char *zKey = zRight;
136782 for(i=0, iByte=0; i<(int)(sizeof(zBuf)*2) && sqlite3Isxdigit(zRight[i]); i++){
136783 iByte = (iByte<<4) + sqlite3HexToInt(zRight[i]);
136789 n = pPragma->iArg<4 ? sqlite3Strlen30(zRight) : -1;
136806 case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){
136807 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
136808 sqlite3_activate_cerod(&zRight[6]);
136821 if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){
136827 sqlite3DbFree(db, zRight);
207784 const void *zRight
207788 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
245872 int sqlite3CodecPragma(sqlite3 *db, int iDb, Parse *parse, const char *zLeft, const char *zRight){
245879 if(sqlite3StrICmp(zLeft, "cipher_default_attach_cipher") == 0 && zRight != NULL){
245880 (void)sqlite3CodecSetDefaultAttachCipher(zRight);
245882 }else if(sqlite3StrICmp(zLeft, "cipher_default_attach_kdf_iter") == 0 && zRight != NULL){
245883 (void)sqlite3CodecSetDefaultAttachKdfIter(atoi(zRight));
245885 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_hmac_algo")==0 && zRight!=NULL ){
245890 if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA1)==0 ){
245893 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA256)==0 ){
245896 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA512)==0 ){
245903 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_kdf_algo")==0 && zRight!=NULL ){
245904 if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA1)==0 ){
245906 }else if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA256)==0 ){
245908 }else if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA512)==0 ){
245914 }else if( sqlite3StrICmp(zLeft, "cipher_default_attach_page_size")==0 && zRight!=NULL ){
245915 (void)sqlite3CodecSetDefaultAttachPageSize(atoi(zRight));
245923 if(zRight){
245925 (void)sqlite3CodecSetCodecConstant(ctx->readCtx, zRight);
245936 if(zRight){
245937 (void)sqlite3CodecSetIter(ctx->readCtx, atoi(zRight));
245938 (void)sqlite3CodecSetIter(ctx->writeCtx, atoi(zRight));
245951 if(zRight){
245953 if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA1)==0 ){
245958 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA256)==0 ){
245963 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA512)==0 ){
245984 if(zRight){
245986 if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA1)==0 ){
245989 }else if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA256)==0 ){
245992 }else if( sqlite3_stricmp(zRight, CIPHER_KDF_ALGORITHM_NAME_SHA512)==0 ){
246011 if(zRight){
246013 int rc = sqlite3CodecSetCipherPageSize(ctx, atoi(zRight));
246028 if(zRight){
246030 if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA1)==0 ){
246032 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA256)==0 ){
246034 }else if( sqlite3_stricmp(zRight, CIPHER_HMAC_ALGORITHM_NAME_SHA512)==0 ){