Lines Matching defs:zRight

20840 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){
20843 b = (unsigned char *)zRight;
20847 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){
20850 b = (unsigned char *)zRight;
90121 ** Check to see if zRight and zLeft refer to a pragma that queries
90125 static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
90173 if( zRight==0 ){
90183 if( sqlite3GetBoolean(zRight) ){
90270 char *zRight = 0; /* Nul-terminated UTF-8 string <value>, or NULL */
90297 zRight = sqlite3MPrintf(db, "-%T", pValue);
90299 zRight = sqlite3NameFromToken(db, pValue);
90304 if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){
90339 if( !zRight ){
90348 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
90370 if( !zRight ){
90377 db->nextPagesize = sqlite3Atoi(zRight);
90396 if( zRight ){
90397 b = sqlite3GetBoolean(zRight);
90432 sqlite3VdbeAddOp3(v, OP_MaxPgcnt, iDb, iReg, sqlite3Atoi(zRight));
90445 int eMode = getLockingMode(zRight);
90504 if( zRight==0 ){
90510 int n = sqlite3Strlen30(zRight);
90512 if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break;
90543 if( zRight ){
90544 sqlite3Atoi64(zRight, &iLimit, 1000000, SQLITE_UTF8);
90567 if( !zRight ){
90576 int eAuto = getAutoVacuum(zRight);
90625 if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){
90656 if( !zRight ){
90659 int size = sqlite3AbsInt32(sqlite3Atoi(zRight));
90677 if( !zRight ){
90680 changeTempStorage(pParse, zRight);
90695 if( !zRight ){
90705 if( zRight[0] ){
90708 rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res);
90721 if( zRight[0] ){
90722 sqlite3_temp_directory = sqlite3_mprintf("%s", zRight);
90747 if( !zRight ){
90765 if( zRight[0] ){
90767 zRight);
90791 if( !zRight ){
90798 pDb->safety_level = getSafetyLevel(zRight)+1;
90805 if( flagPragma(pParse, zLeft, zRight) ){
90824 if( sqlite3StrICmp(zLeft, "table_info")==0 && zRight ){
90827 pTab = sqlite3FindTable(db, zRight, zDb);
90862 if( sqlite3StrICmp(zLeft, "index_info")==0 && zRight ){
90866 pIdx = sqlite3FindIndex(db, zRight, zDb);
90886 if( sqlite3StrICmp(zLeft, "index_list")==0 && zRight ){
90890 pTab = sqlite3FindTable(db, zRight, zDb);
90949 if( sqlite3StrICmp(zLeft, "foreign_key_list")==0 && zRight ){
90953 pTab = sqlite3FindTable(db, zRight, zDb);
90996 if( zRight ){
90997 if( sqlite3GetBoolean(zRight) ){
91010 if( zRight ){
91011 sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight));
91050 if( zRight ){
91051 sqlite3GetInt32(zRight, &mxErr);
91222 if( !zRight ){ /* "PRAGMA encoding" */
91243 if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){
91249 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
91300 if( zRight && iCookie!=BTREE_FREE_PAGE_COUNT ){
91309 sqlite3VdbeChangeP1(v, addr+1, sqlite3Atoi(zRight));
91358 if( zRight ){
91359 if( sqlite3StrICmp(zRight, "full")==0 ){
91361 }else if( sqlite3StrICmp(zRight, "restart")==0 ){
91385 if( zRight ){
91386 sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight));
91429 if( sqlite3StrICmp(zLeft, "key")==0 && zRight ){
91430 sqlite3_key(db, zRight, sqlite3Strlen30(zRight));
91432 if( sqlite3StrICmp(zLeft, "rekey")==0 && zRight ){
91433 sqlite3_rekey(db, zRight, sqlite3Strlen30(zRight));
91435 if( zRight && (sqlite3StrICmp(zLeft, "hexkey")==0 ||
91439 for(i=0; (h1 = zRight[i])!=0 && (h2 = zRight[i+1])!=0; i+=2){
91454 if( sqlite3StrNICmp(zRight, "see-", 4)==0 ){
91455 sqlite3_activate_see(&zRight[4]);
91459 if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){
91460 sqlite3_activate_cerod(&zRight[6]);
91482 sqlite3DbFree(db, zRight);
130695 const void *zRight
130699 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);