Home | History | Annotate | Download | only in dist

Lines Matching defs:zRight

21270 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){
21273 b = (unsigned char *)zRight;
21277 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
21280 b = (unsigned char *)zRight;
92262 ** Check to see if zRight and zLeft refer to a pragma that queries
92266 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
92313 if( zRight==0 ){
92323 if( sqlite3GetBoolean(zRight, 0) ){
92410 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
92440 zRight = sqlite3MPrintf(db, "-%T", pValue);
92442 zRight = sqlite3NameFromToken(db, pValue);
92447 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
92457 aFcntl[2] = zRight;
92510 if( !zRight ){
92519 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
92543 if( !zRight ){
92550 db->nextPagesize = sqlite3Atoi(zRight);
92569 if( zRight ){
92570 b = sqlite3GetBoolean(zRight, 0);
92610 sqlite3AbsInt32(sqlite3Atoi(zRight)));
92623 int eMode = getLockingMode(zRight);
92684 if( zRight==0 ){
92690 int n = sqlite3Strlen30(zRight);
92692 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
92723 if( zRight ){
92724 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
92747 if( !zRight ){
92756 int eAuto = getAutoVacuum(zRight);
92805 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
92833 if( !zRight ){
92836 int size = sqlite3Atoi(zRight);
92854 if( !zRight ){
92857 changeTempStorage(pParse, zRight);
92872 if( !zRight ){
92882 if( zRight[0] ){
92884 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
92897 if( zRight[0] ){
92898 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
92923 if( !zRight ){
92941 if( zRight[0] ){
92943 zRight);
92967 if( !zRight ){
92974 pDb->safety_level = getSafetyLevel(zRight,0,1)+1;
92981 if( flagPragma(pParse, zLeft, zRight) ){
93000 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
93003 pTab = sqlite3FindTable(db, zRight, zDb);
93038 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
93042 pIdx = sqlite3FindIndex(db, zRight, zDb);
93062 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
93066 pTab = sqlite3FindTable(db, zRight, zDb);
93125 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
93129 pTab = sqlite3FindTable(db, zRight, zDb);
93172 if( zRight ){
93173 if( sqlite3GetBoolean(zRight, 0) ){
93186 if( zRight ){
93187 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0));
93226 if( zRight ){
93227 sqlite3GetInt32(zRight, &mxErr);
93398 if( !zRight ){ /* "PRAGMA encoding" */
93419 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
93425 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
93476 if( zRight && iCookie!=BTREE_FREE_PAGE_COUNT ){
93485 sqlite3VdbeChangeP1(v, addr+1, sqlite3Atoi(zRight));
93534 if( zRight ){
93535 if( sqlite3StrICmp(zRight, "full")==0 ){
93537 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
93561 if( zRight ){
93562 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
93615 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
93616 sqlite3_key(db, zRight, sqlite3Strlen30(zRight));
93618 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
93619 sqlite3_rekey(db, zRight, sqlite3Strlen30(zRight));
93621 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
93625 for(i=0; (h1 = zRight[i])!=0 && (h2 = zRight[i+1])!=0; i+=2){
93640 if( sqlite3StrNICmp(zRight, "see-", 4)==0 ){
93641 sqlite3_activate_see(&zRight[4]);
93645 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
93646 sqlite3_activate_cerod(&zRight[6]);
93668 sqlite3DbFree(db, zRight);
133832 const void *zRight
133836 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);